Ever wanted the User's IP, or other things you shouldn't be looking at?
You've come to the right place!
ASP can find all kinds of secret information from the User, you just need to look at the HTTP headers!
You can insert the following information into any ASP variable:
User's Browser Information:
Request.ServerVariables("http_user_agent")
User's IP:
Request.ServerVariables("remote_addr")
DNS lookup of User's IP:
Request.ServerVariables("remote_host")
Method used to call the page:
Request.ServerVariables("request_method")
The server's Domain Name:
Request.ServerVariables("server_name")
The Server's Port:
Request.ServerVariables("server.port")
The Server's Softwar:
Request.ServerVariables("server_software")
Lots of information you can sneak away from them, huh
I attached an ASP File that has code to print out these items, remember that it must be tested online or on a Personal Web Server, you can't just open in Internet Explorer - That just doesn't work
Happy Programming!