https://github.com/dorosch/rootkit
Linux Rootkit
https://github.com/dorosch/rootkit
kernel-module linux linux-rootkit malware rootkit x86
Last synced: 7 days ago
JSON representation
Linux Rootkit
- Host: GitHub
- URL: https://github.com/dorosch/rootkit
- Owner: dorosch
- Created: 2017-06-05T07:08:36.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-07-20T19:37:41.000Z (almost 7 years ago)
- Last Synced: 2025-10-13T07:09:18.036Z (7 months ago)
- Topics: kernel-module, linux, linux-rootkit, malware, rootkit, x86
- Language: C
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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:
```Bash
$ make
```
For debugging, messages are sent to the kernel level. To
view them use `dmesg`. Next, you need to load a module:
```Bash
$ make install
$ dmesg | tail
```
After the test, unload the module:
```Bash
$ make uninstall
$ dmesg | tail
```
And clean up the working directory:
```Bash
$ make clean
```