LetsDefend: Memory Dumper

Another good challenge from LetsDefend.io and kudos to this challenge creator, 0xCyberJunkie.sh. You can access the challenge through this link.

I intentionally masked part of the answers so you will have to do the necessary steps to see the entirety of the the answers.

Scenario: A Windows endpoint was recently compromised. Thanks to the cutting-edge EDR/IDS solution we immediately noticed it. The alert was escalated to Tier 2 (IR Team) for further investigation. As the forensics guy, you were given the memory dump of the compromised host. You should continue to investigate.

Tools: Volatility2, Volatility3, CrackStation, and PEStudio

Questions:

  1. What was the date and time when the memory from the compromised endpoint was acquired?
    • {2022-**-** **:**:**}
      • Type the command: ./vol.py -f location_of_the_dumped_memory_file windows.info
      • -f – this argument is to define the file location.
      • windows.info – to show OS and kernel details of the memory sample being analyzed.
  2. What was the suspicious process running on the system?
    • {l****.**e}
      • Type the command: ./vol.py -f location_of_the_dumped_memory_file windows.pstree
      • windows.pstree – is the plugin for listing processes in a tree format based on their parent process ID.
      • You will see on the image below, there are two lsass.exe processes. The top one has a parent PID of 500 which is a legitimate parent process for lsass.exe. The second entry is showing Explorer.exe as its parent PID, which makes it suspicious.
  3. Analyze and find the malicious tool running on the system by the attacker.
    • {w******.**e}
      • In question number two, we were able to identify the malicious process.
      • Using Volatility 2, type the command: volatility -f location_of_the_dumped_memory_file –profile=Win10x64_17134 procdump -D dump/ -p 7592
      • procdump – is the plugin to dump a process to an executable file sample
      • -D – is the argument to point the location where to dump the process
      • -p – is the process ID that we want to dump
      • As you can see above we now have a file called executable.7592.exe
      • And when you do file dumpo/executable.7592.exe, the result shows that this is a PE file.
      • Open up PEStudio, and load executable.7592.exe, we will see what is the tool name.
  4. Which User Account was compromised?
    • {m**********/**********e}
      • Type the command: ./vol.py -f location_of_the_dumped_memory_file windows.envars
      • windows.envars – is to display process environment variables
  5. What is the compromised user password?
    • {p*********3}
      • First we will need to do a hash dump to retrieve the password hashes.
      • Type the command: ./vol.py -f location_of_the_dumped_memory_file windows.hashdump
      • Open CrackStation through your choice of browser and enter the NT hash that you retrieved.

I hope you enjoyed this short challenge.

Please subscribe to my blog if you haven’t done so.

Published by lightkunyagami

https://tryhackme.com/badge/18276

Join the Conversation

3 Comments

Leave a comment

Please log in using one of these methods to post your comment:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: