Also, da ich mal manchen auf die Sprünge helfen will release ich hier die Cash-In Scripte die ich bisher gefunden habe.
Script No1:
Psc.php
class.psc.php
(c) by Binary @ Back2Hack
Script No2:
(c) by east0n @ hba-crew
Script No 3:
(c)by DOWNandOUT @ raidrush
Sooo, das waren sie auch schon, wer damit was anfangen kann, könnte sich ja bei mir melden oder es Releasen
...
Ich kann leider nichts damit anfangen, da ich noch ein PHP-Neuling bin...
Für alle die die jetz sagen: Nur zusammenkopiert usw... Ich hab bisher sehr viele leute in diesem Forum gesehen die nach solchen Scripten suchen.
Ich will keine THX, da es nur zusamenkopiert ist, ich würde mir ja nichteinmal selbst eins geben ^^
mfg, ooCheateroo
Script No1:
Psc.php
PHP Code:
<form action='psc.php' method='POST'>
PIN: <input id="pin1" type="text" name=%2526quot%253Bpin1%2526quot%253B autocomplete="off" value="" maxlength="4" size="4" /> -
<input id="pin2" type="text" name=%2526quot%253Bpin2%2526quot%253B autocomplete="off" value="" maxlength="4" size="4" /> -
<input id="pin3" type="text" name=%2526quot%253Bpin3%2526quot%253B autocomplete="off" value="" maxlength="4" size="4" /> -
<input id="pin4" type="text" name=%2526quot%253Bpin4%2526quot%253B autocomplete="off" value="" maxlength="4" size="4" /><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>";
}
}
?>
PHP Code:
<?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/GetWelcomePanelServlet?&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>");
}
}
}
}
?>
Script No2:
PHP Code:
<?php
//header('Content-Type: text/plain');
error_reporting(E_ALL);
set_time_limit(0);
// Captcha URL
$cap_url = 'https://customer.cc.at.paysafecard.com/psccustomer/jcaptcha?captchaID=';
$url = "https://customer.cc.at.paysafecard.com/psccustomer/GetWelcomePanelServlet";
$post_url = 'https://customer.cc.at.paysafecard.com/psccustomer/ShowCardToCustomerServlet';
$referer = 'https://customer.cc.at.paysafecard.com/psccustomer/GetWelcomePanelServlet';
if(!isset($_POST['captchaID']))
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url); // URL setzen
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Nicht ausgaben
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_FAILONERROR, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);// allow redirects
curl_setopt($ch, CURLOPT_TIMEOUT, 3); // times out after 4s
/*
curl_setopt($ch, CURLOPT_POST, 1); // set POST method
curl_setopt($ch, CURLOPT_POSTFIELDS, "url=index%3Dbooks&field-keywords=PHP+MYSQL"); // add POST fields
*/
$result = curl_exec($ch); // run the whole process
curl_close($ch);
// Captcha und CaptchaID holn
preg_match('@\<input type\="hidden" name\="captchaID" value\="(.*)\="\>@Umi', $result, $capid);
preg_match('@\<img width\="150" height\="75" src\="jcaptcha\?captchaID\=(.*)\="\>@Umi', $result, $captcha);
echo '<form action="psc.php" method="post">
<input type="text" name="randomNumber_1" value="" />
<input type="text" name="randomNumber_2" value="" />
<input type="text" name="randomNumber_3" value="" />
<input type="text" name="randomNumber_4" value="" />
<input type="text" name="password" value="" />
<input type="text" name="captchaID" value="'.$capid[1].'" />
<img src="'.$cap_url.$captcha[1].'" />
<input type="text" name="captchaResponse" />
<input type="submit" />
</form>';
}
else
{
$postfields = 'randomNumber_1='.$_POST['randomNumber_1'];
$postfields .= '&randomNumber_2='.$_POST['randomNumber_2'];
$postfields .= '&randomNumber_3='.$_POST['randomNumber_3'];
$postfields .= '&randomNumber_4='.$_POST['randomNumber_4'];
$postfields .= '&password='.$_POST['password'];;
$postfields .= '&captchaID='.$_POST['captchaID'];
$postfields .= '&captchaResponse='.$_POST['captchaResponse'];
$postfields .= '&language=';
$postfields .= '&locale=';
$postfields .= '&Submit=Weiter';
echo $postfields;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $post_url); // URL setzen
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Nicht ausgaben
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 1);
curl_setopt($ch, CURLOPT_REFERER, $referer);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);
curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
curl_setopt($ch, CURLOPT_FAILONERROR, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);// allow redirects
curl_setopt($ch, CURLOPT_TIMEOUT, 3); // times out after 4s
$result = curl_exec($ch);
echo curl_error($ch);
curl_close($ch);
echo $result;
}
?>
(c) by east0n @ hba-crew
Script No 3:
PHP Code:
<?php
$port = 443;
$host = "customer.cc.at.paysafecard.com";
$path = "/psccustomer/GetWelcomePanelServlet";
$cap_url = 'https://customer.cc.at.paysafecard.com/psccustomer/jcaptcha?captchaID=';
// script
if($port == 443)
$sslhost = "ssl://".$host;
else
$sslhost = $host;
$fp = fsockopen($sslhost, $port);
$header = "GET /psccustomer/GetWelcomePanelServlet HTTP/1.1\r\n";
$header .= "Host: customer.cc.at.paysafecard.com\r\n";
$header .= "User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.0.14) Gecko/2009082707 Firefox/3.0.14\r\n";
$header .= "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\r\n";
$header .= "Accept-Language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3\r\n";
$header .= "Accept-Encoding: gzip,deflate\r\n";
$header .= "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n";
$header .= "Referer: https://customer.cc.at.paysafecard.com/psccustomer/ShowCardToCustomerServlet\r\n\r\n";
fwrite($fp, $header);
$data = file_get_contents("https://customer.cc.at.paysafecard.com/psccustomer/GetWelcomePanelServlet", "r");
preg_match('@\<input type\="hidden" name\="captchaID" value\="(.*)\="\>@Umi', $data, $capid);
preg_match('@\<img width\="150" height\="75" src\="jcaptcha\?captchaID\=(.*)\="\>@Umi', $data, $captcha);
echo '<form method="post">
<strong>PSC-Code:</strong><br />
<input type="text" name="psc1"> <input type="text" name="psc2"> <input type="text" name="psc3"> <input type="text" name="psc4">
<br />';
#echo $capid[1]."<br />";
echo '<img src="'.$cap_url.$captcha[1].'" />
<br />
<em>Captcha-Code eingeben:</em>
<br />
<input type="text" name="captcha">
<input type="text" name="capid" value="'.$capid[1].'">';
echo '<br />
<br />
<input type="submit" name="abschicken" value="PSC überprüfen"></form>';
fclose($fp);
?>
(c)by DOWNandOUT @ raidrush
Sooo, das waren sie auch schon, wer damit was anfangen kann, könnte sich ja bei mir melden oder es Releasen
Ich kann leider nichts damit anfangen, da ich noch ein PHP-Neuling bin...
Für alle die die jetz sagen: Nur zusammenkopiert usw... Ich hab bisher sehr viele leute in diesem Forum gesehen die nach solchen Scripten suchen.
Ich will keine THX, da es nur zusamenkopiert ist, ich würde mir ja nichteinmal selbst eins geben ^^
mfg, ooCheateroo






