|
You last visited: Today at 12:02
Advertisement
[F] Cashinscript. Nur welches?
Discussion on [F] Cashinscript. Nur welches? within the Metin2 Private Server forum part of the Metin2 category.
12/02/2010, 10:33
|
#1
|
elite*gold: 0
Join Date: May 2009
Posts: 233
Received Thanks: 68
|
[F] Cashinscript. Nur welches?
Morgen.
Joa wie die Überschrift schon sagt suche ich eine Cashinscript.
Ich habe mir schon einige Threads durchgelesen wo Scripts runtergemacht wurden unso.^^ (Von wegen backdoor, dies das...^^)
Naja lasst mir bitte hilfreiche Antworten da. 
Schick mir auch gleich via PN den Link.
mfg. Fluw^^
|
|
|
12/02/2010, 10:50
|
#2
|
elite*gold: 1
Join Date: Mar 2010
Posts: 509
Received Thanks: 71
|
Vllt kannst du was damit anfangen:
index.php
PHP Code:
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 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>");
}
}
}
}
?>
|
|
|
12/02/2010, 10:52
|
#3
|
elite*gold: 0
Join Date: Nov 2010
Posts: 725
Received Thanks: 489
|
Paysafe - Cashin?
- hab eins von Sapphire damals gekauft und umgescriptet.
Das von Sapphire konnte man sich auch nur auf einer Domain registrieren lassen, sonst funktioniert dies nicht auf anderen Seiten, ist aber decrypted und funktioniert.
Ändert pw, schreibt autom. Coins gut [ Boins, Password etc. alles festlegbar ]
Coins autom. angepasst nach Währung [ Euro, CHF ] usw.
Falls interesse, pm.
|
|
|
12/02/2010, 10:56
|
#4
|
elite*gold: 0
Join Date: May 2009
Posts: 233
Received Thanks: 68
|
Quote:
Originally Posted by quivar
Vllt kannst du was damit anfangen:
index.php
PHP Code:
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 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>");
}
}
}
}
?>
|
Funzt das?
|
|
|
12/02/2010, 11:03
|
#5
|
elite*gold: 0
Join Date: Nov 2010
Posts: 725
Received Thanks: 489
|
Quote:
Originally Posted by Ӻluw
Funzt das?
|
nöps.
das aktuellste von sapphire läuft sehr gut.
|
|
|
12/02/2010, 11:23
|
#6
|
elite*gold: 1
Join Date: Mar 2010
Posts: 509
Received Thanks: 71
|
Weiß nicht ob mein script funzt, habs selbst nicht probiert, hatte es nur noch auf der platte rumliegen.
Wenns nicht funzt, dann sorry =/
|
|
|
12/02/2010, 22:07
|
#7
|
elite*gold: 0
Join Date: Sep 2010
Posts: 302
Received Thanks: 116
|
Das von noireh funzt 100%, benutze es selber.
Und viele andere auch.
|
|
|
12/02/2010, 22:08
|
#8
|
elite*gold: 0
Join Date: Feb 2010
Posts: 7,220
Received Thanks: 6,758
|
Frag' mich nur ob noire es selbst gemacht hat, oder es eins meiner geklauten
ist, welche aiir7 damals verkauft hat etc.
|
|
|
12/02/2010, 22:18
|
#9
|
elite*gold: 2
Join Date: Sep 2010
Posts: 1,204
Received Thanks: 343
|
Quote:
Originally Posted by .SoNiice#
Frag' mich nur ob noire es selbst gemacht hat, oder es eins meiner geklauten
ist, welche aiir7 damals verkauft hat etc.
|
ohh man 
ist das grad ein geständnis oder was soll das?
du sagst hier ganz offen das du die sachen klaust und das aiir7 es verkauft hat?
drück dich mal am besten etwas besser aus.
denn hier versteht man das du klaust.
glaube eher das du meintest das noire dir eins von deinen geklaut hat.
die frage wäre von wem du es dann geklut hättest
|
|
|
12/02/2010, 22:35
|
#10
|
elite*gold: 0
Join Date: Nov 2010
Posts: 725
Received Thanks: 489
|
Quote:
Originally Posted by .SoNiice#
Frag' mich nur ob noire es selbst gemacht hat, oder es eins meiner geklauten
ist, welche aiir7 damals verkauft hat etc.
|
Meins habe ich direkt gekauft von Sapphire und habe es umgescripted.
Wie bitte soll ich eines deiner Scripts 'klauen'?
|
|
|
12/02/2010, 23:35
|
#11
|
elite*gold: 15
Join Date: Feb 2010
Posts: 4,410
Received Thanks: 3,105
|
Ich glaube das ihr das gearde falsch interpretiert.
Oder ich? o.o
Ich denke, dass er meint das ihm welche geklaut wurden und von aiir7 verkauft wurden. Und ob das was du hast, vielleicht von aiir7 abgekauft wurde.
Also so verstehe ich das jetzt.
Soniice, bitte verbesser mich wnen ich falsch liege.
|
|
|
12/02/2010, 23:42
|
#12
|
elite*gold: 0
Join Date: Dec 2009
Posts: 1,807
Received Thanks: 866
|
das was aiir7 verkauft hat , hat hennink gescript und tuht nicht so als ob ihr es gescript habt .
|
|
|
12/07/2010, 13:42
|
#13
|
elite*gold: 0
Join Date: Nov 2010
Posts: 725
Received Thanks: 489
|
Quote:
Originally Posted by .SoNiice#
Frag' mich nur ob noire es selbst gemacht hat, oder es eins meiner geklauten
ist, welche aiir7 damals verkauft hat etc.
|
nur doof, dass er seins selbst gekauft hat und umgeschrieben hat 
hennink hat ihm dabei auch geholfen
|
|
|
 |
Similar Threads
|
Welches MB?
11/10/2010 - Technical Support - 5 Replies
Hiho ich bins nochmal ;)
welches MB würdet ihr nehmen? Habs nich so mit Mobo's drum frag ich euch ;D
hardwareversand.de - Artikel-Information - ASRock M3A770DE, Sockel AM3, ATX
hardwareversand.de - Artikel-Information - ECS A785GM-AD3, Sockel AM3, ATX
Bzw. welches würdet ihr für nen AMD x3 440 empfehlen ?
.exT
|
lvl-bot bis welches lvl
06/08/2010 - Metin2 - 9 Replies
hallo
meine frage ist bis welches lvl habt ihr mit dem lvl bot glvlt? und habt ihr gutes equip mit dem charr wo ihr botet? aso hier in einem anderen thread hat einer bis lvl 58 oder so glvlt.
würde mich auf antworten freuen
|
Welches ist rw
08/01/2009 - Metin2 Private Server - 5 Replies
welches von den 60er maps beim tele ist rw?
|
Welches MB?
06/03/2009 - Metin2 - 13 Replies
hi Leute,
wer weis welches Mb noch seeehhr heufig auf dem markt angeboten wird.
also welche Klasse ist gut und es gibt viele Mbs
|
Welches IG Bot für C4? || Which IG Bot for C4?
01/05/2008 - Lineage 2 - 3 Replies
hallo,
welches IG Bot sollte ich für c4 nehmen?
also bspw. welches walker? 1.7? oder geht auch 1.85? ^^
____
hi,
which IG Bot should i use for C4?
like walker 1.7? or could i use walker 1.85 either?
|
All times are GMT +1. The time now is 12:02.
|
|