linux-rootkit

Feature-rich interactive rootkit that targets Linux kernel 4.19, accompanied by a dynamic kernel memory analysis GDB plugin for in vivo introspection (e.g. using QEMU)
git clone git://git.deurzen.net/linux-rootkit
Log | Files | Refs

commit 002c5f7016aa6c22be3e6112073709fc05699b2f
parent a781ade1bb5c93c9fbc2d846c7e73228a5438b6f
Author: Tizian Leonhardt <tizianleonhardt@web.de>
Date:   Sun, 13 Dec 2020 00:17:43 +0100

Revert hooking fragments

Diffstat:
Msrc/hook.c | 5-----
1 file changed, 0 insertions(+), 5 deletions(-)

diff --git a/src/hook.c b/src/hook.c @@ -20,7 +20,6 @@ #include "pidhide.h" #include "openhide.h" #include "read.h" -#include "sockhide.h" extern rootkit_t rootkit; @@ -80,8 +79,6 @@ init_hooks(void) backdoor_read(); else if (rootkit.backdoor == BD_TTY) backdoor_tty(); - - hook_show(); } void @@ -103,8 +100,6 @@ remove_hooks(void) if (rootkit.backdoor != BD_OFF) unbackdoor(); - - unhook_show(); } void