Reptile Linux rootkit 无端口无进程后门安装测试

Features

Give root to unprivileged users
Hide files and directories
Hide processes
Hide himself
Hide TCP/UDP connections
Hidden boot persistence
File content tampering
Some obfuscation techniques
ICMP/UDP/TCP port-knocking backdoor
Full TTY/PTY shell with file transfer
Client to handle Reptile Shell
Shell connect back each X times (not default)

Install

apt install build-essential libncurses-dev linux-headers-$(uname -r)
git clone https://github.com/f0rb1dd3n/Reptile.git
cd Reptile
make menuconfig           # or 'make config' or even 'make defconfig'
make
make install

make时的报错处理:

2c816faa2957694a379f064241749449.png

这个问题应该是系统没有安装内核开发包,可以看下/usr/src/kernels/,如果这个目录是空的,就说明没有安装 内核开发包。

yum install kernel-devel

40b4af014026a396066f204ebbf7344c.png

然后进入目录

cd /lib/modules/3.10.0-862.11.6.el7.x86_64/
rm -f build
ln -s /usr/src/kernels/3.10.0-1160.36.2.el7.x86_64/ ./build

未完待续