Windows Credential Hunting
Application Config Files
findstr /SIM /C:"password" *.txt *.ini *.cfg *.config *.xmlChrome Dictionary Files
gc 'C:\Users\htb-student\AppData\Local\Google\Chrome\User Data\Default\Custom Dictionary.txt' | Select-String passwordUnattended Installation Files
PowerShell History
(Get-PSReadLineOption).HistorySavePath
gc (Get-PSReadLineOption).HistorySavePath# Read all users' PS history
foreach($user in ((ls C:\users).fullname)){cat "$user\AppData\Roaming\Microsoft\Windows\PowerShell\PSReadline\ConsoleHost_history.txt" -ErrorAction SilentlyContinue}Process Command Lines
PowerShell Credentials (DPAPI)
Cmdkey Saved Credentials
Browser Credentials (SharpChrome)
KeePass Database Cracking
Sticky Notes
Windows AutoLogon (Registry)
PuTTY Saved Sessions (Registry)
WiFi Passwords
LaZagne (All-in-One Credential Recovery)
SessionGopher
FileZilla Saved Credentials
File System Credential Search
Other Interesting Files
mRemoteNG Stored Credentials
Cookie Stealing (Slack, IM Clients)
Firefox Cookies
Chromium-based Browser Cookies
Clipboard Monitoring
Installed Programs Enumeration
Mounting VHDX/VMDK Backups
Linux
Extract Hashes from Mounted Disk
Restic Backup Abuse
DbVisualizer Credential Decryption
Password Safe (.psafe3) Cracking
aureport — TTY Logs (Linux, adm group)
Pcredz — Extract Credentials from PCAP
Firefox Credential Extraction
Keytab File Extraction
ccache Ticket Impersonation
Linikatz — Machine Account Auth
Last updated