docs: dividing module documentation into files

This commit is contained in:
joaoviictorti
2024-09-22 22:04:53 -03:00
parent adf84526f4
commit 95d14b4743
2 changed files with 44 additions and 42 deletions

View File

@@ -2,46 +2,6 @@
This documentation provides an overview of the shadow-rs rootkit project and instructions on its usage, features, and development process.
### Table of contents
### Process
#### Hide / Unhide Process
Description:
This command allows you to hide or reveal specific processes on the system.
```cmd
shadow.exe process [hide | unhide] --pid <pid>
```
* `hide`: Hide the specified process.
* `unhide`: Unhide the specified process.
* `<pid>`: The PID of the process you want to hide or reveal.
Example of use:
```cmd
shadow.exe process hide --pid 1234
```
This command will hide the process with PID 1234.
#### Elevate Process to System
Description:
This command allows you to raise the process to system.
```cmd
shadow.exe process elevate --pid <pid>
```
* `elevate`: Elevate the process
* `<pid>`: The PID of the process you want to escalate to system.
Example of use:
```cmd
shadow.exe process elevate --pid 1234
```
This command will hide the process with PID 1234.
* [Process](/docs/process.md)

42
docs/process.md Normal file
View File

@@ -0,0 +1,42 @@
## Process
### Hide / Unhide Process
Description:
This command allows you to hide or reveal specific processes on the system.
```cmd
shadow.exe process [hide | unhide] --pid <pid>
```
* `hide`: Hide the specified process.
* `unhide`: Unhide the specified process.
* `<pid>`: The PID of the process you want to hide or reveal.
Example of use:
```cmd
shadow.exe process hide --pid 1234
```
This command will hide the process with PID 1234.
### Elevate Process to System
Description:
This command allows you to raise the process to system.
```cmd
shadow.exe process elevate --pid <pid>
```
* `elevate`: Elevate the process
* `<pid>`: The PID of the process you want to escalate to system.
Example of use:
```cmd
shadow.exe process elevate --pid 1234
```
This command will elevate the process with PID 1234.