aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswa Kalyan Bhuyan <biswa@surgot.in> 2025-04-17 00:47:08 +0530
committerLibravatarLibravatar Biswa Kalyan Bhuyan <biswa@surgot.in> 2025-04-17 00:47:08 +0530
commit9a53dbd03bfb9d1b1c76cef9a5a3f6fa051de396 (patch)
tree6f4f19179225eee4c0cb8b47299bad0bfeb2dfc7 /Makefile
parent0fda28a6dc1e31e6aaa7222bfcd58bdf4d70af88 (diff)
downloadrootkit-9a53dbd03bfb9d1b1c76cef9a5a3f6fa051de396.tar.gz
rootkit-9a53dbd03bfb9d1b1c76cef9a5a3f6fa051de396.tar.bz2
rootkit-9a53dbd03bfb9d1b1c76cef9a5a3f6fa051de396.zip
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
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
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