Lost Progress
Challenge Description
My friend Andi just crashed his computer and all the progress he made are gone. It was 2 of his secret passwords with each of them being inside an image and a text file. Luckily he has an automatic RAM capture program incase something like this happen, but no idea on how to use it…
Flag
TCP1P{wIeRRRMQqykX6zs3O7KSQY6Xq6z4TKnr_ekxyAH2jIrh0Opyu432tk9y0KdiujkMu}
Analysis and Solution
We are given a memory dump from a Windows system. From the description, we are supposed to recover passwords from an image and a text file. Let's do some more reconnaissance first by see what processes are running.
From the Volatility3 output, we could see some candidates of the processes that could store the passwords. Let's try to dump the GIMP process first to find the passwords.
❯ vol.py -f dumped windows.memmap --dump --pid 5380
After dumping the process and changing the extension to .data
, we can open the file with GIMP to see the image that is opened on the dumped GIMP process.
After tinkering with the offset, width and height, we find the password that is inside the image.
By tinkering with the offset, width and height (again), we also find the password that is inside the text file.
Last updated