githubEdit

PrivEsc Checklist

1) Recycle Bin

cd 'c:\$recycle.bin\<User SID>'
dir /A

2) Passwords

findstr /si password *.txt
findstr /si password *.xml
findstr /si password *.ini
findstr /si pass *.txt
findstr /si pass *.xml
findstr /si pass *.ini

Find all those strings in config files.

dir /s *pass* == *cred* == *vnc* == *.config*

3) If current user can read Event Logs then get the latest PowerShell commands run on the system

Get-EventLog -LogName 'Windows PowerShell' -Newest 100 | Select-Object -Property * 

4) Sticky Notes for Passwords

C:\Users\<user>\AppData\Local\Packages\Microsoft.MicrosoftStickyNotes_8wekyb3d8bbwe\LocalState\plum.sqlite

5) Unquoted Service Paths

6) Running Services

7) DNS Cache

8) Network Drives

9) Active Connections

10) Routing Table

11) Local and network drives

12) Environment Variables

Last updated