Other Files
Manually Searching the File System for Credentials
Search File Contents for String
# search on password in this extentions
C:\htb> cd c:\Users\htb-student\Documents & findstr /SI /M "password" *.xml *.ini *.txt
# display full lines has password
C:\htb> findstr /si password *.xml *.ini *.txt *.config
# display the full line and number of it
C:\htb> findstr /spin "password" *.*Search File Contents with PowerShell
PS C:\htb> select-string -Path C:\Users\htb-student\Documents\*.txt -Pattern password
stuff.txt:1:password: l#-x9r11_2_GL!Search for File Extensions
Sticky Notes Passwords
Looking for StickyNotes DB Files

Viewing Sticky Notes Data Using PowerShell
Strings to View DB File Contents
Other Interesting Files
Last updated