INFORMATIONAL FILES
List all user folders of all users
tree /f /a C:\Users
Get all details about WLAN profiles
cat C:\ProgramData\Microsoft\Wlansvc\Profiles\*.xml
Listing web.config
files
cat C:\inetpub\www\*\web.config
cd C:\; ls web.config -r
Listing unattend.xml
cat C:\Windows\Panther\Unattend.xml
cd C:\; ls unattend.xml -r
List config files
cd C:\ProgramData\Configs\ ; ls
List PowerShell scripts and config files
cd C:\Program Files\Windows PowerShell\; ls
Get Putty config
cd C:\Users\[USERNAME]\AppData\LocalLow\Microsoft\Putty; ls
Get FileZilla creds
cat C:\Users\<USERNAME>\AppData\Roaming\FileZilla\FileZilla.xml
Get Jenkins creds
cat C:\Program Files\Jenkins\credentials.xml
Get VNC password from registry and to decrypt it use vncpwd
Get-ItemProperty -Path HKLM:\Software\TightVNC\Server -Npoweame "Password" | select -ExpandProperty Passwor
Last updated