Credential Hunting in Linux
Credential Hunting in Linux
Credential Storage Categories
Common Search Patterns
# General password search
find / -type f -exec grep -l "password" {} \;
# Config files search
find / -name "*.config" -o -name "*.conf" -type f -exec grep -l "pass" {} \;
# Hidden files
find / -name ".*" -type f -exec grep -l "secret" {} \;Files
Configuration Files
Databases
Notes and Text Files
Scripts
Cronjobs
SSH Keys
History
Bash History
Logs
Memory and Cache
Using Mimipenguin
Using LaZagne
Browser Credentials
Firefox Stored Credentials
Decrypting Firefox Credentials
Common Credential Storage Locations
Component
Location
Commands/Methods
What to Look For
Last updated