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 536c73b0fbff93ada50030a1dc610ac140bc73db
parent a6920c1dd9c92762b4d1306fdf171e037b58c6c9
Author: Tizian Leonhardt <tizianleonhardt@web.de>
Date:   Wed,  3 Feb 2021 21:21:30 +0100

Get rid of newlines

Diffstat:
Mproject/type_dict.py | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/project/type_dict.py b/project/type_dict.py @@ -78,8 +78,5 @@ class CodeDict(): if type_info is not None: key = f"{src}:{lnr}" - self.dict[key] = type_info - - print(self.dict) - + self.dict[key] = type_info.replace('\n','') CodeDict()