Next Generation Emulation banner

php help

918 Views 3 Replies 3 Participants Last post by  scottlc
Hey guys, i was wondering is it possible to capture the windows domain and login id of the machine accessing a website using php?

if so, how do ya do it?

Regards
1 - 4 of 4 Posts
No it is not possible. That sort of information is not transmitted over the HTTP protocol.
Well, you can grab the username logged in over NTLM or basic authentication if that's what you mean. Check the HTTP_AUTH_USER variable. The site has to require authentication for that information to be present, though.
FLaRe85 said:
Well, you can grab the username logged in over NTLM or basic authentication if that's what you mean. Check the HTTP_AUTH_USER variable. The site has to require authentication for that information to be present, though.
But that isn't the Windows domain login, only the username for a protected area on the web server.

Besides, I fail to see why you would want to capture that such information anyway.
1 - 4 of 4 Posts
This is an older thread, you may not receive a response, and could be reviving an old thread. Please consider creating a new thread.
Top