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 cce29bf62501ebcac4794cdf4720a1cc487a7eba
parent f15510329acbf2939bfc6897b6e36d2c542c3874
Author: deurzen <m.deurzen@tum.de>
Date:   Fri,  5 Feb 2021 20:05:17 +0100

adds newline to print

Diffstat:
Mproject/extract_sizeret.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/project/extract_sizeret.py b/project/extract_sizeret.py @@ -76,7 +76,7 @@ class RkPrintData(gdb.Command): try: data = gdb.execute(f"print *(({type[7:]}){arg})", to_string=True) - print(f"resolving {arg} to {type}") + print(f"resolving {arg} to {type}\n") print(data) except: print(f"could not resolve {type} at {arg}")