I have to access a web server at http://someserver and it requires some authentication. How can I tell if it is using NTLM, Kerberos or whatever it may be?
+4
A:
Use a tool like Fiddler to look at the response headers. The server will send back some "WWW-Authenticate" headers that list the different security protocols that are supported.
David
2010-01-27 23:04:20
Sweet and easy answer!
Matt
2010-01-27 23:04:50
Fiddler will also tell you if you're using NTLM vs Kerberos by parsing the www-authenticate header.
Christopher_G_Lewis
2010-02-04 14:47:26