├── cookie.txt ├── bin.php ├── api.php └── index.php /cookie.txt: -------------------------------------------------------------------------------- 1 | # Netscape HTTP Cookie File 2 | # https://curl.haxx.se/docs/http-cookies.html 3 | # This file was generated by libcurl! Edit at your own risk. 4 | 5 | -------------------------------------------------------------------------------- /bin.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api.php: -------------------------------------------------------------------------------- 1 | #Approved '.$cc.' '.$mes.' '.$ano.' '.$cvv.' '.$bin.''; 105 | } else { 106 | echo '#Failed '.$cc.' '.$mes.' '.$ano.' '.$cvv.' '.$message.''; 107 | } 108 | ?> -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |