Development Team Montego Data Limited 
This article () shows Server Information.
ALL_HTTP | HTTP_CONNECTION:Keep-Alive HTTP_ACCEPT:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 HTTP_ACCEPT_ENCODING:br,gzip HTTP_ACCEPT_LANGUAGE:en-US,en;q=0.5 HTTP_HOST:montegodata.co.uk HTTP_USER_AGENT:CCBot/2.0 (https://commoncrawl.org/faq/) |
ALL_RAW | Connection: Keep-Alive Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: br,gzip Accept-Language: en-US,en;q=0.5 Host: montegodata.co.uk User-Agent: CCBot/2.0 (https://commoncrawl.org/faq/) |
APPL_MD_PATH | /LM/W3SVC/273/ROOT |
APPL_PHYSICAL_PATH | D:\Inetpub\vhosts\montegodata.co.uk\httpdocs\ |
CONTENT_LENGTH | 0 |
GATEWAY_INTERFACE | CGI/1.1 |
HTTPS | off |
INSTANCE_ID | 273 |
INSTANCE_META_PATH | /LM/W3SVC/273 |
LOCAL_ADDR | 5.77.32.136 |
PATH_INFO | /WebForms/Site.aspx |
PATH_TRANSLATED | D:\Inetpub\vhosts\montegodata.co.uk\httpdocs\WebForms\Site.aspx |
REMOTE_ADDR | 44.200.122.214 |
REMOTE_HOST | 44.200.122.214 |
REMOTE_PORT | 60028 |
REQUEST_METHOD | GET |
SCRIPT_NAME | /WebForms/Site.aspx |
SERVER_NAME | montegodata.co.uk |
SERVER_PORT | 80 |
SERVER_PORT_SECURE | 0 |
SERVER_PROTOCOL | HTTP/1.1 |
SERVER_SOFTWARE | Microsoft-IIS/10.0 |
URL | /WebForms/Site.aspx |
HTTP_CONNECTION | Keep-Alive |
HTTP_ACCEPT | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
HTTP_ACCEPT_ENCODING | br,gzip |
HTTP_ACCEPT_LANGUAGE | en-US,en;q=0.5 |
HTTP_HOST | montegodata.co.uk |
HTTP_USER_AGENT | CCBot/2.0 (https://commoncrawl.org/faq/) |
HTTP_X_REWRITE_URL | /WebForms/Site.aspx |
HTTP_X_ORIGINAL_URL | /WebForms/Site.aspx |
UserHostAddress | 44.200.122.214 |
<table border="1"> <% IEnumerator en = Request.ServerVariables.Keys.GetEnumerator(); en.MoveNext(); foreach( string key in Request.ServerVariables.Keys) { if (Request.ServerVariables[key].Trim().Length > 0) { Response.Write( string.Format("<tr><td><b>{0}</b></td><td>{1}</td></tr>", key, Request.ServerVariables[key])); } } %> </table> <table border="1"> <% for each name in Request.ServerVariables if len(trim( Request.ServerVariables(name) )) > 0 then Response.write( "<tr><td><b>"&name&":</b></td><td>" ) Response.write( Request.ServerVariables(name) ) Response.write( "</td></tr>" ) end if next %> </table> <h3>Client side IP geolocation using <a href="http://ipinfo.io">ipinfo.io</a></h3> <hr/> <div id="ip"></div> <div id="address"></div> <hr/>Full response: <pre id="details"></pre> $.get("http://ipinfo.io", function (response) { $("#ip").html("IP: " + response.ip); $("#address").html("Location: " + response.city + ", " + response.region); $("#details").html(JSON.stringify(response, null, 4)); }, "jsonp");In this asp based site simply iterating through ServerVariables reveals this information.