Thursday, April 29, 2010

Web Proxy Checker Pro 1.7.5 released

Download Web Proxy Checker Now

Improvements/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.

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";
    }
  }
 }
?>

No comments:

Post a Comment