🚩 Challenge Overview
- Platform/Event: HTB Cyber Apocalypse 2025
- Difficulty: Medium
- Points: 260
- Solves: 140
- Category: Forensics
- Tags: Volatility 3, Memory Forensics, LSASS, Credential Dumping
📝 Description
Memory dump of a Windows Server compromised via LSASS dumping. Use Volatility 3 to locate the LSASS process and recover NT hashes.
💡 Solution / Approach
-
Run Volatility info plugin to identify the OS:
python3 vol.py -f mem.raw windows.info. -
List active processes to confirm lsass.exe was dumped:
windows.pslist. -
Dump credentials using the hashdump plugin:
python3 vol.py -f mem.raw windows.hashdump.Hashdump. -
Crack the administrator hash using John or Hashcat to find the secret passphrase flag.