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 6b927de3b54800d5d694275b9150810416bd4b96
parent e0ae4be1fafe8164b3b644eeed15c76c39866a3e
Author: Tizian Leonhardt <tizianleonhardt@web.de>
Date:   Sun, 29 Nov 2020 23:24:00 +0100

Merge branch 'master' of github.com:deurzen/rootkit-programming-dev

Diffstat:
MMakefile | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -10,12 +10,12 @@ SRC_FILES := $(SRC_FILES:$(src)/%=%) obj-m += $(TARGET).o $(TARGET)-objs := $(SRC_FILES:%.c=%.o) -ccflags-y := -std=gnu99 -Wno-declaration-after-statement +ccflags-y := -std=gnu99 -Wno-declaration-after-statement -Wno-unused-result all: build debug: clean - @make -C $(KERNELDIR) M=$(PWD) ccflags-y="-DDEBUG" modules + @make -C $(KERNELDIR) M=$(PWD) ccflags-y="$(ccflags-y) -DDEBUG" modules release: clean build @@ -33,7 +33,8 @@ clean: @make -C $(KERNELDIR) M=$(PWD) clean test: debug remove clear_dmesg install - -@./check_pingpong.py /proc/g7rkp + -@./checkers/check_pingpong.py /proc/g7rkp + -@./checkers/check_filehiding -@dmesg .PHONY: install