Advertisement
Guest User

Ip Keylogger [Php Version] By:sH@rk-Dz

a guest
Jul 21st, 2014
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4.  
  5. /*
  6.  
  7. By:sH@rk-Dz
  8.  
  9. SImple php Script easly to get ip & os & more things
  10.  
  11. after send him to any person & open it this will riderct to google
  12.  
  13. and generat txt file called ip_Log.txt insdime himwill see you victume ( ip) :)
  14.  
  15.  
  16. */
  17.  
  18.  
  19. $creat = fopen ('ip_Log.txt','a');
  20.  
  21. $date = date (" Y-m-d-M-h:i |");
  22.  
  23. $ip = $_SERVER['REMOTE_ADDR']."|".$_SERVER['HTTP_USER_AGENT'];
  24.  
  25. $edite = fwrite($creat,$date."". $ip ."\n\n");
  26.  
  27. fclose ($creat);
  28.  
  29. header ("location: http://google.com");
  30.  
  31. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement