JakRapp

https://iin-bin.com/bin/

Dec 11th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.76 KB | None | 0 0
  1. // https://iin-bin.com/bin/
  2. $ccno = str_replace(' ', '', $ccno);
  3. $last4 = substr($ccno, 12, 16);
  4. $bin = substr($ccno, 0, 6);
  5. $getbank = file_get_contents("https://iin-bin.com/bin/" . $bin);
  6. if (inStr($getbank,"fa fa-cc-")) {
  7.     $vendor = strtoupper(getStr($getbank,'fa fa-cc-','"'));
  8. }
  9. else {
  10.     $vendor = "";
  11. }
  12. if (inStr($getbank,"Card Level</th><td>")) {
  13.     $level  = strtoupper(getStr($getbank,"Card Level</th><td>","</td>"));
  14. } else {
  15.     $level = "";
  16. }
  17. if (inStr($getbank,"Bank Issuer</th><td><b>")) {
  18.     $bank  = strtoupper(getStr($getbank,"Bank Issuer</th><td><b>","</b>"));
  19. } else {
  20.     $bank = "";
  21. }
  22. if (inStr($getbank,"Card Type</th><td>")) {
  23.     $type  = strtoupper(getStr($getbank,"Card Type</th><td>","</td>"));
  24. } else {
  25.     $type = "";
  26. }
Add Comment
Please, Sign In to add comment