Free PHP Cloaking Script

Status
Not open for further replies.
interesting idea... I found out about this trick from amish shah seminar
 
Noobish question : Can this be modified to bypass the adword review for an affiliate landing page ??Otherwise can you guys share such script ??
 
the purpose of this script appears very obscure to me: why anybody in this world would want to send traffic from google to Yauba?

here:
preg_match('!^removed_by_mod.[a-z]{2,3}(\.[a-z]{2,3})?/!i',
php has a native function named parse_url that does a lot better the job (returns an array with all URL components from where you can extract host).

and this block of code detects nothing (or almost):
$ip = strval($_SERVER['REMOTE_ADDR']); // conversion to string
$host = gethostbyaddr($ip);

$GoogleByHost = false;
$GoogleByIP = false ; // default values

if (preg_match("/crawl-66-249-[\d]{1,3}-[\d]{1,3}\.googlebot\.c*o*m/", $host))
{$GoogleByDNS = true;}

if (preg_match("/66\.249\.[\d]{1,3}\.[\d]{1,3}/", $ip))
{$GoogleByIP = true;}
because gethostbyaddr may fail or send unreliable data and the patterns given:
crawl-66-249-[\d]{1,3}-[\d]{1,3}\.googlebot\.c *o*m and
66\.249\.[\d]{1,3}\.[\d]{1,3}

are of a little relevance.

But maybe I couldn't understand it as I should, please provide details if possible.
 
Damn, this whole thread a Cr*P and full of m*r*ns...This belongs to cloaking section.
 
Can anyone help me in customizing the script as per my requirement, I can pay upto $100 for this.

PM me if anyone interested.

thanks..
 
Can anyone help me in customizing the script as per my requirement, I can pay upto $100 for this.

PM me if anyone interested.

What is your requirement. What niche you want to run and on what network ? Let me know.

Thanks!
 
I am running a tech support business for USA and I need a cloaking script for my website. Let me know if someone can help me with this. I have fair knowledge about html but I have 0 knowledge about php. I am ready to pay.
 
I am running a tech support business for USA and I need a cloaking script for my website. Let me know if someone can help me with this. I have fair knowledge about html but I have 0 knowledge about php. I am ready to pay.
And you know that you just bumped a 4 years OLD Thread ?
That's classified as SPAM in here !
Post Reported !
 
Status
Not open for further replies.
Back
Top