From 9a53dbd03bfb9d1b1c76cef9a5a3f6fa051de396 Mon Sep 17 00:00:00 2001 From: Biswa Kalyan Bhuyan Date: Thu, 17 Apr 2025 00:47:08 +0530 Subject: Implement Linux kernel module with process hiding and monitoring capabilities - Add multiple kernel modules for process manipulation - Implement /proc directory hooking to hide processes by PID or name - Create stealth mode to hide specific commands from process listings - Add process explorer module for detailed process information - Include shell script for service management integration - Add proper module parameters for runtime configuration --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6282706..7410a64 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,11 @@ obj-m += pid_hider.o +obj-m += proc_explorer.o +obj-m += pid_demo.o +obj-m += proc_monitor.o +obj-m += proc_hider.o all: - make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules + make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) modules clean: - make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean \ No newline at end of file + make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) clean \ No newline at end of file -- cgit v1.2.3-59-g8ed1b