Original von ABH
PHP-Code:
Code:
<?php
/**************************************************  ********************
*                                                                                                                                               *
* Script name   : M*** PayPal Verify Checker                           *
* Info          : A little scipt to check email[IMG]http://www.alboraaq.com/forum/images/smilies/tongue.gif[/IMG]***words list for    *
*                 PayPal account whether the email is verified by     *
*                 PayPal or not. This is not login validity checker!  *
* Coded with    : Notepad++ v5.4.5 (UNICODE)                          *
* Coder             : gblack a.k.a biadabz                                *
* Thxz & Greetz : Dewi Jack XShadow inc0mp13te mywisdom t3cm4n bejamz *
*                 Vrs-hCk YaDoY666 s4va and You                       *
* Skid warning  : Don't ever rip my code or i will kill your mama!    *
*                                                                                                                       *
**************************************************  ********************/
set_time_limit(0);
?>
<html>
<link rel="shortcut icon" href="https://www.paypalobjects.com/WEBSCR-640-20101108-1/en_US/i/icon/pp_favicon_x.ico">
<head>
<title>M*** PayPal Verify Checker</title>
<style>
body {
    background-color: #FFFFFF;
    color: #000000;
    font-family: "Courier New";
    font-size: 11px;
}
textarea {
    background-color: #FFFFFF;
    border: 1px solid;
    border-color: #000000;
    color: #000000;
    font-family: "Courier New";
    font-size: 11px;
}
input,select {
    background-color: #FFFFFF;
    border: 1px solid;
    border-color: #000000;
    color: #000000;
    font-family: "Courier New";
    font-size: 11px;
}
</style>
</head>
<body>
<img src="http://tierraycal.com/images/paypal.png" widht="100"  height="100" ><h2>M*** PayPal Verify Checker</h2>
<font >Masukkan Email Paypal Yang Akan di Secen </font><br>
<form name="data" method="post">
<textarea name="lists" cols="37" rows="15"></textarea><br>
<input type="submit" value="Check now!">
</form>
<?php
if($_POST['lists']) {
    
$mainz "https://www.paypal.com/";
    
$login 'emailanda';
    
$p***'p***word';
        if(
file_exists(getcwd().'/cookie.txt')) {
        
unlink(getcwd().'/cookie.txt');
    }
    
$lists split("\n"$_POST['lists']);
    
$a = new cURL();
    
$b $a->get($mainz."/cgi-bin/webscr?cmd=_login-run");
    
preg_match("/dispatch=(.*?)\">/"$b$dispatch);
    
$dispatch $dispatch[1];
    
$c = new cURL();
    
$d =  $c->post($mainz."/cgi-bin/webscr?cmd=_login-submit&amp;dispatch=".$dispatch,  "login_email=".$login."&login_p***word=".$p***w."&   target_page=0&submit.x=Log+In");
    if(
preg_match("/<h2 cl***=\"accessAid\">Logging in<\/h2>/"$d)) {
        
preg_match("/login_access=(.*)\">/"$d$access);
        
$access $access[1];
        print 
"<b>[+] Main account has been logged in...<br>";
        print 
"[+] There are ".count($lists)." to be checked for verfication...</b><br><br>";
        
flush();
        
$e = new cURL();
        
$f $e->get($mainz."/cgi-bin/webscr?cmd=_login-done&amp;login_access=".$access);
        for(
$x 0;$x count($lists);$x++) {
            print 
"[".($x+1)."] ".$lists[$x];
            list(
$email$p***word) = split(":"$lists[$x]);
            
flush();
            
$g = new cURL();
            
$h $g->get($mainz."/cgi-bin/webscr?cmd=_seal-entry&pal=".$email);
            if(
preg_match("/<span cl***=\"inlineRed\">/"$h)) {
                print 
"<font color='red'> - Not verified!</font>";
                
flush();
            } else {
                print 
"<font color='green'>";
                if(
preg_match("/<td cl***=\"emphasis\">/"$h)) {
                    
$i preg_split("/<td cl***=\"emphasis\">/"$h);
                    foreach(
$i as $j) {
                            
preg_match("/(.*)<\/td>/"$j$k);
                            print 
$k[1]." - ";
                    }
                    print 
"Good!</font>";
                    
flush();
                } else {
                    print 
"<font  color='red'><br><br><b>[!] Error, access to this  page is limited, try to change the main  account!</b></font>";
                    exit;
                }
            }
            print 
"<br>";
            
flush();
        }
    } else {
        print 
"<font color='red'><b>[!] Error logging in the main account!</b></font>";
    }
}
// Taken from somewhere else, with a bit modification [IMG]http://www.alboraaq.com/forum/images/smilies/wink.gif[/IMG]
cl*** cURL {
    var 
$callback false;
    function 
setCallback($func_name) {
        
$this->callback $func_name;
    }
    function 
doRequest($method$url$vars) {
        
$ch curl_init();
        
curl_setopt($chCURLOPT_URL$url);
        
curl_setopt($chCURLOPT_HEADER1);
        
curl_setopt($chCURLOPT_USERAGENT$_SERVER['HTTP_USER_AGENT']);
        
curl_setopt($chCURLOPT_FOLLOWLOCATION1);
        
curl_setopt($chCURLOPT_RETURNTRANSFER1);
        
curl_setopt($chCURLOPT_SSL_VERIFYPEER0);
        
curl_setopt($chCURLOPT_SSL_VERIFYHOST0);
                
curl_setopt($chCURLOPT_COOKIEJARgetcwd().'/cookie.txt');
        
curl_setopt($chCURLOPT_COOKIEFILEgetcwd().'/cookie.txt');
        
curl_setopt($chCURLOPT_VERBOSE1);
        if (
$method == 'POST') {
            
curl_setopt($chCURLOPT_POST1);
            
curl_setopt($chCURLOPT_POSTFIELDS$vars);
        }
        
$data curl_exec($ch);
        
curl_close($ch);
        if (
$data) {
            if (
$this->callback) {
                
$callback $this->callback;
                
$this->callback false;
                return 
call_user_func($callback$data);
            } else {
                return 
$data;
            }
        } else {
            return 
curl_error($ch);
        }
    }
    function 
get($url) {
        return 
$this->doRequest('GET'$url'NULL');
    }
    function 
post($url$vars) {
        return 
$this->doRequest('POST'$url$vars);
    }
}
?>
<hr>
<b>Coded [c] 2010 by gblack</b>
</body>
</html>
 
Code:
if($_POST['lists']) {
    $mainz = "https://www.paypal.com/";
    $login = 'emailanda';    <==== email
    $p***w = 'p***word';     <==== p*** 
        if(file_exists(getcwd().'/cookie.txt')) {
        unlink(getcwd().'/cookie.txt');