├── .gitignore ├── Makefile ├── README.md ├── backdoor.py ├── client.c ├── doc.md ├── img └── iterate.png ├── init.sh ├── install.sh ├── ppt ├── lsmod.gif ├── root.gif └── rootkit.key ├── remove.sh └── rootkit.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4ubles/RootKit/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4ubles/RootKit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4ubles/RootKit/HEAD/README.md -------------------------------------------------------------------------------- /backdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4ubles/RootKit/HEAD/backdoor.py -------------------------------------------------------------------------------- /client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4ubles/RootKit/HEAD/client.c -------------------------------------------------------------------------------- /doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4ubles/RootKit/HEAD/doc.md -------------------------------------------------------------------------------- /img/iterate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4ubles/RootKit/HEAD/img/iterate.png -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4ubles/RootKit/HEAD/init.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4ubles/RootKit/HEAD/install.sh -------------------------------------------------------------------------------- /ppt/lsmod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4ubles/RootKit/HEAD/ppt/lsmod.gif -------------------------------------------------------------------------------- /ppt/root.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4ubles/RootKit/HEAD/ppt/root.gif -------------------------------------------------------------------------------- /ppt/rootkit.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4ubles/RootKit/HEAD/ppt/rootkit.key -------------------------------------------------------------------------------- /remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4ubles/RootKit/HEAD/remove.sh -------------------------------------------------------------------------------- /rootkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4ubles/RootKit/HEAD/rootkit.c --------------------------------------------------------------------------------