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 e252167f2829f44fb6f4a20512193681bcbb5595
parent 8e8eda3ea1468380d2416ffd4a45e54554a0acdf
Author: deurzen <m.deurzen@tum.de>
Date:   Sun,  6 Dec 2020 14:39:18 +0100

fixes rkctl help output column output issue

Diffstat:
Msrc/rkctl/rkctl.c | 20++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/rkctl/rkctl.c b/src/rkctl/rkctl.c @@ -207,14 +207,14 @@ help() { printf("usage: %s <command>\n\n", progname); printf("These are the available commands:\n"); - printf("%-32s %s\n", "help", "this message"); - printf("%-32s %s\n", "ping", "send an echo request to the rootkit"); - printf("%-32s %s\n", "unload", "gracefully unload the rootkit module"); - printf("%-32s %s\n", "modhide <on | off>", "{,un}hide rootkit module"); - printf("%-32s %s\n", "filehide [open] <toggle | on | off>", "{,un}hide [open] files"); - printf("%-32s %s\n", "backdoor <execve_command>", "exec a command as root"); - printf("%-32s %s\n", "shell", "obtain a shell as root"); - printf("%-32s %s\n", "backdoor-use-tty <0 | 1>", "listen for `make_me_root` on read (0) or tty (1)"); - printf("%-32s %s\n", "backdoor-off", "disable any (read or tty) backdoor"); - printf("%-32s %s\n", "hidepid <add | rm> <PID>", "{,un}hide a process"); + printf("%-38s %s\n", "help", "this message"); + printf("%-38s %s\n", "ping", "send an echo request to the rootkit"); + printf("%-38s %s\n", "unload", "gracefully unload the rootkit module"); + printf("%-38s %s\n", "modhide <on | off>", "{,un}hide rootkit module"); + printf("%-38s %s\n", "filehide [open] <toggle | on | off>", "{,un}hide [open] files"); + printf("%-38s %s\n", "backdoor <execve_command>", "exec a command as root"); + printf("%-38s %s\n", "shell", "obtain a shell as root"); + printf("%-38s %s\n", "backdoor-use-tty <0 | 1>", "listen for `make_me_root` on read (0) or tty (1)"); + printf("%-38s %s\n", "backdoor-off", "disable any (read or tty) backdoor"); + printf("%-38s %s\n", "hidepid <add | rm> <PID>", "{,un}hide a process"); }