Forensicsmedium
Historical Breadcrumbs
by Pavel Knespl (capyplivl)
A Windows profile extract for user plandau, suspected of leaking data. The flag is a base64 tag in a suspicious upload URL recorded in Chrome history.
Solve
- The extract contains Chrome user data, PowerShell history, and other artifacts. Open the Chrome history database:
sqlite3 "Users/plandau/AppData/Local/Google/Chrome/User Data/Default/History"
- Query the urls table for the outbound upload:
SELECT url FROM urls WHERE url LIKE '%paste-mirror%';
https://paste-mirror-q4.example.invalid/upload?tag=U1ZJVVNDR3tvc3ByZXlfY2hyb21lX2hpc3RvcnlfbGVha191cmx9&src=oc
- Decode the tag parameter:
echo U1ZJVVNDR3tvc3ByZXlfY2hyb21lX2hpc3RvcnlfbGVha191cmx9 | base64 -d
Flag: SVIUSCG{osprey_chrome_history_leak_url}