Advertisement
Guest User

rgrgr

a guest
Jan 23rd, 2020
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. $ch = curl_init();
  2. curl_setopt($ch, CURLOPT_URL, 'http://ke1.nl/en/checker4/api.php');
  3. curl_setopt($ch, CURLOPT_HEADER, 0);
  4. curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  5. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  6. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  7. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  8. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
  9. curl_setopt($ch, CURLOPT_COOKIEFILE, getcwd().'/cookie.txt');
  10. curl_setopt($ch, CURLOPT_COOKIEJAR, getcwd().'/cookie.txt');
  11. curl_setopt($ch, CURLOPT_HTTPHEADER, array(
  12. 'Host: ke1.nl',
  13. 'User-Agent: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36',
  14. 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8',
  15. 'Origin: http://ke1.nl',
  16. 'Referer: http://ke1.nl/en/checker4/',
  17. 'Connection: keep-alive',
  18. 'Content-Length: 39'
  19. ));
  20. curl_setopt($ch, CURLOPT_POSTFIELDS,
  21. '<textarea class="form-control" id="cc" name="cc" title="","","","" placeholder="" required="required"></textarea>');
  22. $pagamento = curl_exec($ch);
  23. $token = trim(strip_tags(getstr($pagamento,'"token" : "','"')));
  24. $ch = curl_init();
  25. curl_setopt($ch, CURLOPT_URL, 'http://ke1.nl/en/checker4/api.php');
  26. curl_setopt($ch, CURLOPT_HEADER, 0);
  27. curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  28. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  29. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  30. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  31. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
  32. curl_setopt($ch, CURLOPT_COOKIEFILE, getcwd().'/cookie.txt');
  33. curl_setopt($ch, CURLOPT_COOKIEJAR, getcwd().'/cookie.txt');
  34. curl_setopt($ch, CURLOPT_HTTPHEADER, array(
  35. 'Content-Type: text/html',
  36. 'Content-Encoding: gzip',
  37. 'Content-Length: 132',
  38. 'Vary: Accept-Encoding',
  39. 'X-Powered-By: PHP/5.3.29',
  40. 'User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36',
  41. ));
  42. curl_setopt($ch, CURLOPT_POSTFIELDS,
  43. '<textarea class="form-control" id="cc" name="cc" title="","","","" placeholder="" required="required"></textarea>');
  44. $pagamento = curl_exec($ch);
  45. $message = trim(strip_tags(getstr($pagamento,'"message":"','"')));
  46. if(strpos($pagamento, 'Live | ') !== false) {
  47. echo '<span class="badge badge-success">► Approved ✔ - </span> '.$cc.' '.$mes.' '.$ano.' '.$cvv.' <span class="badge badge-danger">'.$bin.'</span>';
  48. } else {
  49. echo '<span class="badge badge-danger">► Declined ✘ - </span> '.$cc.' '.$mes.' '.$ano.' '.$cvv.' <span class="badge badge-danger">'.$bin.'</span>';
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement