Web Proxy Checker Pro 1.7.5 released
Download Web Proxy Checker NowImprovements/Bugfixes
[+] Check for anonymity - detect anonymous and high anonymous (elite) proxies.
By the degree of anonymity HTTP proxies can be Transparent, Anonymous and High Anonymous (Elite). You can read more about proxies and their anonymity here: Proxy Lists
Web Proxy Checker Pro allows you to detect anonymous proxies. Turn on "Check for anonymity" option and select required level: "decline transparent proxies" or "only elite proxies allowed". "Anonymity check URL" - url of the script that returns HTTP request headers. By default proxy checker uses this url: http://optinsoft.x10hosting.com/getheaders.php. But you can use your own script located on your hosting.
PHP script example that returns HTTP request headers
<?php
$headers = array();
echo "REMOTE_ADDR: ".$_SERVER['REMOTE_ADDR']."<br />\n";
foreach(array_keys($_SERVER) as $skey)
{
if(substr($skey, 0, 5) == "HTTP_")
{
if ($skey != "HTTP_COOKIE")
{
echo $skey.": ".$_SERVER[$skey]."<br />\n";
}
}
}
?>