Here is PHP script to reslove ip from CouldFlare protected sites!
PHP:
<?php
/*
* getCF.php
* I got tired of looking up the DNS records of these various hosts
* to find the real IP of a CloudFlare protected Server.
* www.bigkesh.com
* orgy[at]bigkesh[dot]com
* Usage: php getCF.php domain.com
* Usage2: www.yoursite.com/getCF.php?find=domain.com
*/
if (!isset($argv[1]) && !isset($_GET['find']))
{
die("Argument needs to be a valid hostname.\n");
}
$lookupArr = array("mail.",...
PHP:
CloudFlare Resolver[/url]