views:

49

answers:

1

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
Sweet and easy answer!
Matt
Fiddler will also tell you if you're using NTLM vs Kerberos by parsing the www-authenticate header.
Christopher_G_Lewis