2

I'm attempting to retrieve CGI variable Auth_User when a user has supplied their credentials after logging into their local computers using Active Directory.

I have ensured that Microsoft Authentication and Anonymous Authentication is Enabled at the Web Server Level and the Site Level in IIS.

I put the following code in the web.config which returned a 500 error.

<authentication mode="Windows" />
<identity impersonate="true" />
<authorization>
    <deny users="?" />
    <allow users="*" />
</authorization>

It states the Server_Protocol is HTTP/1.1, Server Software Miscrosoft-IIS/7.5.

Does anyone have any further suggestions?

rrk
  • 15,677
  • 4
  • 29
  • 45
Megan
  • 83
  • 6
  • 2
    You have to disable anonymous authentication. With that enabled it allows no credentials. You should have only Windows Auth enabled. This will force the browser to send the authenticated user's id (or prompt for it). – Miguel-F Jun 20 '19 at 20:51

0 Answers0