0

Can you explain in one sentence what is requested by the Request Header below? (So that I can find explanation of each term :Negotiate, Basic-realm, NTLM)

WWW-Authenticate Negotiate NTLM Basic realm="localhost"

Thanks

pencilCake
  • 51,323
  • 85
  • 226
  • 363

2 Answers2

0

It's a broken header, unless you missed a few commas.

Julian Reschke
  • 40,156
  • 8
  • 95
  • 98
0

The header is saying that the server is expecting you to authenticate.

It will accept NTLM (Windows NT Lan Manager) or Basic authentication, and when you send it back, use the realm "localhost".

Your next request should include an HTTP Authentication: XXXXXX header with appropriate authentication for the request you're making.

Kylar
  • 8,876
  • 8
  • 41
  • 75