Does any body know any website which we can purchase the following code i want the script in which i can see from my side who has viewed my website whats his ip address and show me if he/she has used vpn tunnel ,if he/she used vpn connection whats his/her real ip address,and show me the username/ of his isp does anybody has this script?
I am aware that you can get the real users IP address using .htaccess. Search it on Google. Thanks, Michael
thanks for the answer can you tell me more,if the real ip address found what to do with finding username of whomever viewing the website?
I believe with the .htaccess trick, it just replaces: <?php $_SERVER['REMOTE_ADDR']; ?> PHP: When you call it out in the PHP file. The .htaccess with basically strip the wall between the site and the fake IP what they are using. Thanks, Michael
you can try the following for working around the vpn $_SERVER['HTTP_X_FORWARDED_HOST']; $_SERVER['HTTP_X_FORWARDED_SERVER']; "HTTP_X_FORWARDED_FOR" Contains the remote client IP for which the forward was performed. "HTTP_X_FORWARDED_HOST" Contains the address of the responsible proxy server. "HTTP_X_FORWARDED_SERVER" Contains the FQDN of the responsible proxy server. concerning the isp name you would have to reference the whois in some way or purchase an isp database to reference the ip by. You can always get the host name but this is not the isp but simply the rdns for the ip. $fullhost = gethostbyaddr($ip);
I think the likes of hotspot shield have a 'null' isp reference, maybe others might have similar. As others are saying, try to find a list for vpn ip/isp references and keep a log file of your referrers to track any inconsistencies. ROOFIS