Post Compromise
- Username and hostname
- Group memberships of the current user
- Existing users and groups
- Operating system, version and architecture
- Network information
- Installed applications
- Running processesDisplay network and process info
route print
netstat -ano
powershell -command "Get-Process"
tasklistCheck installed applications
# 32 Bits
Get-ItemProperty "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*" | select displayname
# 64 Bits
Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*" | select displaynameDisplay Application Details
Searching stuff
Checking History
Get DPAPI Master Key
Dumping SYSTEM and LOCAL
DLL Injection (if we have System32 folder write access but cannot get shell)
tzres.dll
Printconfig.dll
Mimikatz
Fileless Reverse Shell
Double reverse shell (runas also have exe)
Local GetSPN.ps1
Last updated