1. 程式人生 > >linux processinfo-threads內核模塊

linux processinfo-threads內核模塊

ads uname depend root ces shell int RoCE git

技術分享圖片
報找不到頭文件是內核版本太低
升級內核:
https://www.tecmint.com/upgrade-kernel-in-ubuntu/

tail /var/log/kern.log

Makefile

obj-m   :=pinfo-threads.o

KERNELDIR ?= /lib/modules/$(shell uname -r)/build
PWD       := $(shell pwd)

all:
    $(MAKE) -C $(KERNELDIR) M=$(PWD)

clean:
    rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.c .tmp_versions

源碼:
https://github.com/haidragon/linux-rootkits-red-blue-teams/tree/master/007-processinfo-threads

linux processinfo-threads內核模塊