CrowdStrike / falcon-orchestrator

CrowdStrike Falcon Orchestrator provides automated workflow and response capabilities
GNU Affero General Public License v3.0
186 stars 54 forks source link

Username/Password prompt on first login #23

Closed droptables closed 7 years ago

droptables commented 7 years ago

I got the MSQL DB up and communicating with the web app. On first visit to http://localhost, I am prompted for username/password but am unclear on what I need to give it.

I tried the accounts i put in 'allowed users' but those didn't work. Am I missing something?

Thanks!

screen shot 2017-01-31 at 2 57 48 pm
mr-burnse commented 7 years ago

Yes that's correct, the "allowed users" defines the Windows accounts which have access to login to the web application. If you're running the server as a standalone/workgroup setup, this should be a local windows account. If attached to a domain you can use domain accounts.

Try the following to troubleshoot:

Open the C:\inetpub\Falcon Orchestrator\web.config file and verify the account(s) added within the section `

<authorization>
  <allow users="hostname\username"/>
  <deny users="*"/>
</authorization>`. Make sure this is setup as expected. NOTE the format should follow hostname\username (use the actual hostname not localhost) for local accounts and domain\username for domain accounts.
droptables commented 7 years ago

Ah gotcha. That worked. Thanks!