docs: Adding thread module documentation

This commit is contained in:
joaoviictorti
2024-09-23 10:32:08 -03:00
parent d21d5a0f1c
commit 3bfec0ec0f
3 changed files with 46 additions and 1 deletions

View File

@@ -81,6 +81,28 @@ shadow.exe process signature --pid 1234 --pt protected --sg win-tcb
This command changes the protection of the process with PID 1234.
## Process Protection (Anti-Kill / Dumping)
Description:
This command allows you to add or remove process protection.
```cmd
shadow.exe process protection --pid <pid> [--add | --remove]
```
* `protection`: Protect the specified process.
* `-a / --add`: Add the process.
* `-r / --remove`: Remove the process.
* `pid`: The PID of the process you want to protect.
Example of use:
```cmd
shadow.exe process protection --pid 1234 --add
```
This command will protect the process with PID 1234.
## Terminate Process
Description: