Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 597 Bytes

README.md

File metadata and controls

36 lines (25 loc) · 597 Bytes

Linux Rootkit

This project is a Linux rootkit for hiding its work and hiding the work of the custom malware.

Assembly

To build, you need the tools from the package module-assistant in Debian or kernel-devel in Fedora. After installation, assemble the module:

$ make

For debugging, messages are sent to the kernel level. To view them use dmesg. Next, you need to load a module:

$ make install
$ dmesg | tail

After the test, unload the module:

$ make uninstall
$ dmesg | tail

And clean up the working directory:

$ make clean