PowerShell
A collection of PowerShell commands/functions that helps your penetration testing
Start a Process
PS> Start-Process "C:\Windows\System32\fodhelper.exe" -WindowStyle Hidden
Modify Registry
Create registry keys and entries
PS> New-Item "HKCU:\Software\Classes\ms-settings\Shell\Open\command" -Force
Add a registry entry to
PS> New-ItemProperty -Path "HKCU:\Software\Classes\ms-settings\Shell\Open\command" -Name "DelegateExecute" -Value "" -Force
Delete subkeys from registry recursively
PS> Remove-Item HKLM:\Software\example\ -Recurse
Last updated
Was this helpful?