Powershell
Get Command
ps> Get-Command -Noun process
ps> Get-Command -Verb get
ps> Get-Command set*
ps> Get-Command *processAlias and Children
PS> Get-Alias ls
PS> Get-Alias -Definition Get-ChildItem
PS> Get-ChildItem HKLM: ..Registry
PS> Get-ChildItem cert: ..Cert StoreHelp
PS> Get-Help Get-ChildItem
PS> help Get-ChildItem
PS> help Get-ChildItem -detailed
PS> help Get-ChildItem -examples #best stuff hereCreate/Delete
Shorcuts
Find the Fields related to the processes
ForEach Loops
Find Services
Ping Sweeps
Downloads
Download and Execute
REF: TransferFiles
One Liner to run from CMD
Powershell RunAs
PowerShell can also be used to launch a process as another user.
Simple script will run a reverse shell as the specified username and password.
Last updated
Was this helpful?