Advertisement
Badchilds

Untitled

Oct 9th, 2016
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. // Badchilds - Get Bin from Credit card.
  2. $bin = str_replace(' ', '', $_POST['cc_number']);
  3. $bin = substr($bin, 0, 6);
  4. $Badchilds = explode($bin, file_get_contents("http://bins.pro/search?action=searchbins&bins=" . $bin . "&bank=&country="));
  5. $xBadcc = explode("</td><td>", $Badchilds[2]);
  6. $Bank = explode("</td></tr>", $xBadcc[5]);
  7. $ccbrand = $xBadcc[2];
  8. $ccbank = $Bank[0];
  9. $cctype = $xBadcc[3];
  10. $ccklas = $xBadcc[4];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement