[COLOR=#0000BB][FONT=monospace]<?php
[/FONT][/COLOR][COLOR=#FF8000][FONT=monospace]// plused.net google +1 bot
// by styx / argo-content.com 2011
// -------------------------------
//include("captchabot.php");
//include("functions.php");
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]error_reporting[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]0[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
function [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$url[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$data[/FONT][/COLOR][COLOR=#007700][FONT=monospace]=[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]NULL[/FONT][/COLOR][COLOR=#007700][FONT=monospace])
{
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c [/FONT][/COLOR][COLOR=#007700][FONT=monospace]= [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl_init[/FONT][/COLOR][COLOR=#007700][FONT=monospace]();
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl_setopt[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]CURLOPT_URL[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$url[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl_setopt[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]CURLOPT_USERAGENT[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]'Mozilla/5.0'[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl_setopt[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]CURLOPT_ENCODING[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]'gzip,deflate'[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl_setopt[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]CURLOPT_AUTOREFERER[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]true[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl_setopt[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]CURLOPT_RETURNTRANSFER[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]1[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);[/FONT][/COLOR][COLOR=#007700][FONT=monospace]
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl_setopt[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]CURLOPT_FOLLOWLOCATION[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]TRUE[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl_setopt[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]CURLOPT_COOKIESESSION[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]FALSE[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl_setopt[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]CURLOPT_COOKIEJAR[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"cookiez"[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl_setopt[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]CURLOPT_COOKIEFILE[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"cookiez"[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl_setopt[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]CURLOPT_TIMEOUT[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]5[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
if([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$data[/FONT][/COLOR][COLOR=#007700][FONT=monospace]!==[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]NULL[/FONT][/COLOR][COLOR=#007700][FONT=monospace])
{
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl_setopt[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]CURLOPT_POST[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]TRUE[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl_setopt[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]CURLOPT_POSTFIELDS[/FONT][/COLOR][COLOR=#007700][FONT=monospace], [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$data[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
}
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$html [/FONT][/COLOR][COLOR=#007700][FONT=monospace]= [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl_exec[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl_close[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
return [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$html[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
}
function [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]reg[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$user[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$pass[/FONT][/COLOR][COLOR=#007700][FONT=monospace]) {
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$query [/FONT][/COLOR][COLOR=#007700][FONT=monospace]= [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"username=[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$user[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]&email=[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$user[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]%40gmail.com&password=[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$pass[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]&password2=[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$pass[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$html [/FONT][/COLOR][COLOR=#007700][FONT=monospace]= [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"plused.net/register.php?ref=7108"[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$query[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
if([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]stristr[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$html[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"Thank you for registering"[/FONT][/COLOR][COLOR=#007700][FONT=monospace])) {
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]file_put_contents[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"user.log"[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$user[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]:[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$pass[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]\n"[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]FILE_APPEND[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
return [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]true[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
} else {
return [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]false[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
}
}
function [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]login[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$user[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$pass[/FONT][/COLOR][COLOR=#007700][FONT=monospace]) {
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$html [/FONT][/COLOR][COLOR=#007700][FONT=monospace]= [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"plused.net/login.php"[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"username=[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$user[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]&password=[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$pass[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
if([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]stristr[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$html[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"Log out"[/FONT][/COLOR][COLOR=#007700][FONT=monospace])) {
return [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]true[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
} else {
return [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]false[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
}
}
function [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]add_site[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$url[/FONT][/COLOR][COLOR=#007700][FONT=monospace]) {
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$html [/FONT][/COLOR][COLOR=#007700][FONT=monospace]= [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"plused.net/members/confirmadd.php"[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"url="[/FONT][/COLOR][COLOR=#007700][FONT=monospace].[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]urlencode[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$url[/FONT][/COLOR][COLOR=#007700][FONT=monospace]));
if([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]stristr[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$html[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"Go earn some points"[/FONT][/COLOR][COLOR=#007700][FONT=monospace])) {
return [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]true[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
}
if([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]stristr[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$html[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"has already been added"[/FONT][/COLOR][COLOR=#007700][FONT=monospace])) {
print [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]" domain already exists!\n"[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
return [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]false[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
} else {
return [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]false[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
}
}
function [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]plus[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$u[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$p[/FONT][/COLOR][COLOR=#007700][FONT=monospace]) {
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$html [/FONT][/COLOR][COLOR=#007700][FONT=monospace]= [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"plused.net/members/earn.php"[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$try[/FONT][/COLOR][COLOR=#007700][FONT=monospace]=[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]0[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
if([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]stristr[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$html[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"there are no more coins to be earned at the moment"[/FONT][/COLOR][COLOR=#007700][FONT=monospace])) {
die([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"- no more +1 to harvest rightnow, we hit them all :)\n"[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
}
if([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]stristr[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$html[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"You have reached your hourly limit"[/FONT][/COLOR][COLOR=#007700][FONT=monospace])) {
[/FONT][/COLOR][COLOR=#FF8000][FONT=monospace]//print "- hourly limit reached, waiting 60 mins (+/- a few more sec to apply extra randomness) to continue (required!)\n";
[/FONT][/COLOR][COLOR=#007700][FONT=monospace]print [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"- hourly limit reached, trying to circumvent limit.."[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]unlink[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"cookiez"[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]login[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$u[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$p[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#FF8000][FONT=monospace]//$wait=rand(3610,3700);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$wait[/FONT][/COLOR][COLOR=#007700][FONT=monospace]=[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]0[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]sleep[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$wait[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
}
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]preg_match_all[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]'/<br>Your Coins: (.*?)</'[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$html[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$m[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$coins[/FONT][/COLOR][COLOR=#007700][FONT=monospace]=[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$m[/FONT][/COLOR][COLOR=#007700][FONT=monospace][[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]1[/FONT][/COLOR][COLOR=#007700][FONT=monospace]][[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]0[/FONT][/COLOR][COLOR=#007700][FONT=monospace]];
echo [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]" coins: [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$coins[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace] |"[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]preg_match_all[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"/<font color='green'>(.*?)</"[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$html[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$n[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$ur[/FONT][/COLOR][COLOR=#007700][FONT=monospace]=[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$n[/FONT][/COLOR][COLOR=#007700][FONT=monospace][[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]1[/FONT][/COLOR][COLOR=#007700][FONT=monospace]][[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]0[/FONT][/COLOR][COLOR=#007700][FONT=monospace]];
echo [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]" url: [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$ur[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace] | "[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
if([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]stristr[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$html[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"recaptcha"[/FONT][/COLOR][COLOR=#007700][FONT=monospace])) {
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]unlink[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"cookiez"[/FONT][/COLOR][COLOR=#007700][FONT=monospace]); [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]login[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$u[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$p[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#FF8000][FONT=monospace]/* apparently logging out is enough lol so we don't even need to solve recaptcha
while($try<10) {
$html = curl("plused.net/members/earn.php");
$res = recaptcha($html);
print " $try. captcha result..: ".$res[1]."\n";
$query = "tact=cap&recaptcha_challenge_field=".$res[0]."&recaptcha_response_field=".$res[1]."e&verify=Verify%21";
$html = curl("plused.net/members/earn.php",$query);
if(stristr($html,"You are about to ")) {
print "- captcha recognized!\n";
break;
} else {
print "- failed!\n";
}
$try++;
}*/
[/FONT][/COLOR][COLOR=#007700][FONT=monospace]}
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]preg_match_all[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"/top.location.href=\"(.*)\"/"[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$html[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$match[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$plus[/FONT][/COLOR][COLOR=#007700][FONT=monospace]=[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$match[/FONT][/COLOR][COLOR=#007700][FONT=monospace][[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]1[/FONT][/COLOR][COLOR=#007700][FONT=monospace]][[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]0[/FONT][/COLOR][COLOR=#007700][FONT=monospace]];
print [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"plus link: [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$plus[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]\n"[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$html [/FONT][/COLOR][COLOR=#007700][FONT=monospace]= [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]curl[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$plus[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
}
function [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]usage[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$arg[/FONT][/COLOR][COLOR=#007700][FONT=monospace]) {
die([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"usage: [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$arg[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace] <user> <pass>\nonce you have a user, you can execute: [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$arg[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace] add yourdomain.tld to add a domain\n"[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
}
if(empty([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$argv[/FONT][/COLOR][COLOR=#007700][FONT=monospace][[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]1[/FONT][/COLOR][COLOR=#007700][FONT=monospace]])) [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]usage[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$argv[/FONT][/COLOR][COLOR=#007700][FONT=monospace][[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]0[/FONT][/COLOR][COLOR=#007700][FONT=monospace]]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$u[/FONT][/COLOR][COLOR=#007700][FONT=monospace]=[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]trim[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$argv[/FONT][/COLOR][COLOR=#007700][FONT=monospace][[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]1[/FONT][/COLOR][COLOR=#007700][FONT=monospace]]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$p[/FONT][/COLOR][COLOR=#007700][FONT=monospace]=[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]trim[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$argv[/FONT][/COLOR][COLOR=#007700][FONT=monospace][[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]2[/FONT][/COLOR][COLOR=#007700][FONT=monospace]]);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$m[/FONT][/COLOR][COLOR=#007700][FONT=monospace]=[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$argv[/FONT][/COLOR][COLOR=#007700][FONT=monospace][[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]3[/FONT][/COLOR][COLOR=#007700][FONT=monospace]]; [/FONT][/COLOR][COLOR=#FF8000][FONT=monospace]// use anything as arg3 to skipp registration
[/FONT][/COLOR][COLOR=#007700][FONT=monospace]if([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]file_exists[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"cookie"[/FONT][/COLOR][COLOR=#007700][FONT=monospace])) [/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]unlink[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"cookie"[/FONT][/COLOR][COLOR=#007700][FONT=monospace]); [/FONT][/COLOR][COLOR=#FF8000][FONT=monospace]// we want a new session so get rid of old cookies
[/FONT][/COLOR][COLOR=#007700][FONT=monospace]if([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$m[/FONT][/COLOR][COLOR=#007700][FONT=monospace]==[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"add"[/FONT][/COLOR][COLOR=#007700][FONT=monospace]) {
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$url[/FONT][/COLOR][COLOR=#007700][FONT=monospace]=[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]trim[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$argv[/FONT][/COLOR][COLOR=#007700][FONT=monospace][[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]4[/FONT][/COLOR][COLOR=#007700][FONT=monospace]]);
if([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]login[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$u[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$p[/FONT][/COLOR][COLOR=#007700][FONT=monospace])==[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]true[/FONT][/COLOR][COLOR=#007700][FONT=monospace]) {
print [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"- login successfull!\n"[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
} else {
die([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"- login failed!\n"[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
}
if([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]add_site[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$url[/FONT][/COLOR][COLOR=#007700][FONT=monospace])==[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]true[/FONT][/COLOR][COLOR=#007700][FONT=monospace]) {
die([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"- new site added!\n"[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
} else {
die([/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"- failed!\n"[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
}
}
if(empty([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$argv[/FONT][/COLOR][COLOR=#007700][FONT=monospace][[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]3[/FONT][/COLOR][COLOR=#007700][FONT=monospace]])) {
if([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]reg[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$u[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$p[/FONT][/COLOR][COLOR=#007700][FONT=monospace])==[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]true[/FONT][/COLOR][COLOR=#007700][FONT=monospace]) {
print [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"- registration successfull!\n"[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
} else {
print [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"- registration failed!\n"[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
}
}
if([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]login[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$u[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$p[/FONT][/COLOR][COLOR=#007700][FONT=monospace])==[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]true[/FONT][/COLOR][COLOR=#007700][FONT=monospace]) {
print [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"- login successfull!\n"[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
} else {
print [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"- login failed!\n"[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
}
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c[/FONT][/COLOR][COLOR=#007700][FONT=monospace]=[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]0[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
for(;;) {
print [/FONT][/COLOR][COLOR=#DD0000][FONT=monospace]"([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c[/FONT][/COLOR][COLOR=#DD0000][FONT=monospace])"[/FONT][/COLOR][COLOR=#007700][FONT=monospace];
[/FONT][/COLOR][COLOR=#FF8000][FONT=monospace]//$time=rand(1,3); blah we got no time to waste :P
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]plus[/FONT][/COLOR][COLOR=#007700][FONT=monospace]([/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$u[/FONT][/COLOR][COLOR=#007700][FONT=monospace],[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$p[/FONT][/COLOR][COLOR=#007700][FONT=monospace]);
[/FONT][/COLOR][COLOR=#FF8000][FONT=monospace]//sleep($time);
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]$c[/FONT][/COLOR][COLOR=#007700][FONT=monospace]++;
}
[/FONT][/COLOR][COLOR=#0000BB][FONT=monospace]?>
[/FONT][/COLOR]