Files
shadow-rs/docs/README.md
2024-09-27 21:58:25 -03:00

47 lines
2.2 KiB
Markdown

## Windows Kernel Rootkit in Rust (shadow-rs) Documentation 🦀
This document presents an overview of the `shadow-rs` project, describing its features, instructions for use and details of the development process. `shadow-rs` is designed to provide an advanced set of tools for manipulating processes, threads, drivers and much more in the Windows kernel.
### Table of contents
* [Process](/docs/process.md)
* [Process (Hide / Unhide)](/docs/process.md#hide--unhide-process)
* [Elevate Process to System](/docs/process.md#elevate-process-to-system)
* [Process Signature (PP / PPL)](/docs/process.md#process-signature-pp--ppl)
* [Process Protection (Anti-Kill / Dumping)](/docs/process.md#process-protection-anti-kill--dumping)
* [Terminate Process](/docs/process.md#terminate-process)
* [Lists protected and hidden processes currently on the system](/docs/process.md#lists-protected-and-hidden-processes-currently-on-the-system)
* [Thread](/docs/thread.md)
* [Thread (Hide / Unhide)](/docs/thread.md)
* [Thread Protection (Anti-Kill)](/docs/thread.md)
* [Lists protected and hidden threads currently on the system](/docs/thread.md)
* [Driver](/docs/driver.md)
* [Driver (Hide / Unhide)](/docs/driver.md)
* [Enumerate Driver](/docs/driver.md)
* [Misc](/docs/misc.md)
* [Driver Signature Enforcement (DSE) (Enable / Disable)](/docs/misc.md)
* [Enable Keylogger](/docs/misc.md)
* [ETWTI (Enable / Disable)](/docs/misc.md)
* [Port](/docs/port.md)
* [Port (Hide / Unhide)](/docs/port.md)
* [Callbacks](/docs/callback.md)
* [List / Remove / Restore Callbacks](/docs/callback.md)
* [Listing currently removed callbacks](/docs/callback.md)
* [Module](/docs/module.md)
* [Hide Module](docs/module.md)
* [Enumerate Module](/docs/module.md)
* [Registry](/docs/registry.md)
* [Key and Values (Hide / Unhide)](/docs/registry.md)
* [Registry Protection (Anti-Deletion e Overwriting)](/docs/registry.md)
* [Injection](/docs/registry.md)
* [Process Injection - Shellcode (ZwCreateThreadEx)](/docs/injection.md)
* [Process Injection - DLL (ZwCreateThreadEx)](/docs/injection.md)
* [APC Injection - Shellcode](/docs/injection.md)