mirror of
https://github.com/joaoviictorti/shadow-rs.git
synced 2025-12-21 17:24:27 +01:00
2.1 KiB
2.1 KiB
Process
Hide / Unhide Process
Description: This command allows you to hide or reveal specific processes on the system.
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:
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.
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:
shadow.exe process elevate --pid 1234
This command will elevate the process with PID 1234.
Process Signature (PP / PPL)
Description: This command allows you to protect / unprotect a process using Process Protection (PP) or Protected Process Light (PPL).
shadow.exe process signature --pt <PT> --sg <SG> --pid 1234
-
signature: Signature the process. -
<pt>: The protection type.- Possible values:
none: No protectionprotected-light: Light protectionprotected: Full protection
- Possible values:
-
<sg>: The protection signer.- Possible values:
none: No signerauthenticode: Authenticode signercode-gen: Code generation signerantimalware: Antimalware signerlsa: LSA signerwindows: Windows signerwin-tcb: WinTcb signerwin-system: WinSystem signerapp: Application signermax: Maximum value for signers
- Possible values:
-
<pid>: The PID of the process you want to modify PP / PPL.
Example of use:
shadow.exe process signature --pid 1234 --pt protected --sg win-tcb
This command changes the protection of the process with PID 1234.