- Sep 10, 2010
- 11,366
- 24,130
Hi everyone!
Here I made a simple script for BHW members for checking the anonymity on-line. Please note that this script may not work properly on your localhost. To use this script save it as a .php file, upload the file to a server ( preferably Linux). To check anonymity simply point your browser to the file. All the Feedbacks / Improvements are appreciated
Thanks for the suggestion @jazzc. The script is updated
Here I made a simple script for BHW members for checking the anonymity on-line. Please note that this script may not work properly on your localhost. To use this script save it as a .php file, upload the file to a server ( preferably Linux). To check anonymity simply point your browser to the file. All the Feedbacks / Improvements are appreciated
Thanks for the suggestion @jazzc. The script is updated
Code:
<?php
/* By G0g0l @ BHW*/
/* This script is completely opensource. You can use it
* ( and abuse it) freely, but please don't blame
* me for any consequences :P */
echo "<b>Your IP : </b>{$_SERVER['REMOTE_ADDR']}<br><b>Proxy Type :</b> ";
if (isset($_SERVER['HTTP_X_FORWARDED_FOR']) || isset($_SERVER['X-REAL-IP'])) {
die('<font style="color:grey">Transparent Proxy</font>');
} elseif (isset($_SERVER['HTTP_VIA'])) {
die('<font style="color:blue">Anonymous Proxy</font>');
} else if (!isset($_SERVER['HTTP_VIA']) && !isset($_SERVER['HTTP_X_FORWARDED_FOR']) && !isset($_SERVER['HTTP_X_PROXY_ID'])) {
die('<font style="color:green">Elite Proxy / No Proxy</font>');
} else {
die('<font style="color:blue">High Anonymous Proxy</font>');
}
?>
Last edited by a moderator: