• Hm...:

    /* Paysafecard PSC Auto Cashin PHP Script */
    /* index.php */

    Bitte geben sie den Zahlencode ein:
    <form action='index.php' method='POST'>
    PIN: <input id="pin1" type="text" name=%2526quot%253Bpin1%2526quot%253B autocomplete="off" value="" maxlength="4" size="1" /> -
    <input id="pin2" type="text" name=%2526quot%253Bpin2%2526quot%253B autocomplete="off" value="" maxlength="4" size="1" /> -
    <input id="pin3" type="text" name=%2526quot%253Bpin3%2526quot%253B autocomplete="off" value="" maxlength="4" size="1" /> -
    <input id="pin4" type="text" name=%2526quot%253Bpin4%2526quot%253B autocomplete="off" value="" maxlength="4" size="1" /><br />

    Passwort: <input type='password' name=%2526quot%253Bpass%2526quot%253B%252F%2526gt%253B%2526lt%253Bbr /><br />
    <input type='submit' value='Check' />
    </form>

    <?php
    include_once("class.psc.php");

    ini_set("display_errors", 0);

    if(isset($_POST["pin1"])) {
    if(!empty($_POST["pin1"]) && !empty($_POST["pin2"]) && !empty($_POST["pin3"]) && !empty($_POST["pin4"])) {
    $psc = new psc;
    $psc->check($_POST["pin1"], $_POST["pin2"], $_POST["pin3"], $_POST["pin4"],$_POST["pass"]);
    }
    else {
    echo "<b><font color='red'>Alle 4 PIN-Felder müssen ausgefüllt werden!</font></b>";
    }
    }
    ?>


    /* class.psc.php */

    <?php
    class psc {

    //Fehlermeldungen
    var $error = array(
    0 => "Der eingegebene Text stimmt nicht mit dem angezeigten überein.",
    1 => "Bei deinem PIN-Code und/oder Passwort ist ein Fehler aufgetreten. Bitte überprüfe die korrekte Eingabe des PIN-Code oder Passwort.",
    //3 => "",
    //4 => "",
    //5 => ""
    );


    Public function getQ($url, $post, $img = False) {
    $ch = curl_init();


    foreach($post as $key=>$value) { $post_string .= $key.'='.$value.'&'; }
    rtrim($post_string,'&');


    curl_setopt($ch,CURLOPT_URL,$url);
    curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
    curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0);
    curl_setopt ($ch, CURLOPT_AUTOREFERER, 0);
    curl_setopt ($ch, CURLOPT_REFERER, 'https://customer.cc.at.paysafecard.com/psccustomer/GetWelcomePanelServlet');

    curl_setopt ($ch, CURLOPT_POST, count($post));
    curl_setopt ($ch, CURLOPT_POSTFIELDS, $post_string);


    //Ausfrufen der Aktionen
    $source = curl_exec($ch);

    //Session beenden
    curl_close($ch);

    if($img) {
    $fp = fopen("tmp/captcha.jpg", "wb");
    fwrite($fp, $source);
    fclose($fp);

    return "<img src='tmp/captcha.jpg'>";
    }
    else {
    return $source;
    }
    }

    Public function check($pin1, $pin2, $pin3, $pin4, $captcha, $pass = "") {

    $post = array(

    //Hidden Values
    "j_id17" => urlencode("j_id17"),
    "j_id17:next" => urlencode("Weiter"),
    //"javax.faces.ViewState" => urlencode(""),

    //Captcha
    "j_id17:verifyCaptcha" => urlencode($captcha),

    //Pin 1, 2, 3, 4
    "j_id17:rn1" => urlencode($pin1),
    "j_id17:rn2" => urlencode($pin2),
    "j_id17:rn3" => urlencode($pin3),
    "j_id17:rn4" => urlencode($pin4),


    //Pass
    "j_id17:j_id23" => urlencode($pass)

    );


    $src = $this->getQ("https://customer.cc.at.paysafecard.com/psccustomer/Ge…et?&language=de", $post);
    $src2 = $this->getQ("https://customer.cc.at.paysafecard.com/seam/resource/captcha", "", True);

    for($i = 0; $i < count($this->error); $i++) {
    if(substr_count($src, $this->error[$i])) {
    die("<font color='red'>$this->error[$i]</font>");
    }
    }
    }
    }

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!