Skip to content

Latest commit

 

History

History
executable file
·
147 lines (85 loc) · 8.32 KB

File metadata and controls

executable file
·
147 lines (85 loc) · 8.32 KB

Forensics Challenges — CyberThreatForce CTF 2021

Write-Up Date: 19-Jul-2021

drawing

TOOLS USED: Volatility

INTRODUCTION:

For this writeup, I wrote about something that I never did before, FORENSICS!

I would like to say that it was my first time using Volatility and doing Memory Forensics.

I put a lot of details in this writeup. It is my way to learn how to use Volatility but also to show you how you can use this amazing tool if you are a beginner.

In this CTF, we have 5 different challenges around the same file (mem.raw). That is why I put all those challenges in the same writeup. Let’s start!

CHALLENGES:

Deep In My Mind (75 points)

Hello Agent, We were able to get our hands on the RAM dump of a pc belonging to the APT403, Find us the potential profile (volatility profile) of the memory dump.

Flag format: CYBERTF {volatility profile}

File to download: mem.raw

First, when you start to investigate with Volatility, you need to find the right profile. Basically, the profile is the version of the OS that they did the memory dump.

To find the Volatility Profile, we run the “imageinfo” command in Volatility. It will provide us several profiles. Most of the time, the right profile is always the first one. However, it could be a different one. For this challenge, the first profile was the right one.

drawing

drawing

Pretty easy this one, right? We just found our first flag.

Flag : CYBERTF{Win7SP1x64}

More Deeper (100 Points)

Can you see what is written in the notepad? (Use the file downloaded from In the back of my mind)

Now that we have the right profile we can start to go deeper into our investigation.

The first thing that we need to do here is to discover the right PID of the notepad.exe program. To see all the PIDs we can use the command “pslist”.

drawing

drawing

As you can see in the image above, when you run this command, it shows the Offset(v), the Name of the program, the PID, and other information.

From here you have two options, you check it manually or you can use grep to only shows the notepad.exe program (personally I used grep).

drawing

Great, now we know that the PID number is 628.

The next step is: we need to extract the memdump of this program. In order to do this, I will use this command with the right PID (notepad.exe’s PID):

drawing

After running this command, a new file will be created in the folder that you are working(in this case 628.dmp)

drawing

In this file you have a lot of information, to extract the information that you need, you will need to use your bash skills 😊. Let’s “strings” then “grep” only the word “CYBER” as we know that the flag starts with this word.

drawing

Nice! We found the second flag!

Flag: CYBERTF{D33P3R_TH4N_TH3_M4R14NN4_TR3NCH}

Almost At The Bottom (100 Points)

Which Twitter account did the user visit? for the flag, we want the name of the Twitter account without @ For example CYBERTF {elonmusk} (Use the file downloaded from In the back of my mind)

This one was tricky for me. The challenge says that we need to find information related to a Twitter account, but how?

After a moment, I realized that to use Twitter we need to use a browser, right? In this case, we need to check all the information that we can found in the browser used by this user.

The most used browsers can be Internet Explorer, Chrome, Firefox etc. So if you use again the “pslist” command you will see that the user used Internet Explorer (explorer.exe) as browser.

As we know that the user used this program let’s extract all the information related to this program. (here I used the same method of the last challenge). By the way, the PID of explorer.exe is 2808.

drawing

drawing

Like the previous challenge, a new file has been created (2808.dmp) in my folder.

drawing

Now we need to find all the information related to Twitter in this file. In order to do this, I used the same command as we saw before, but I changed to the word “twitter” this time.

drawing

Ok, so the user visited several times this profile. We just found the 3er flag as the challenge only asks for the Twitter username.

Flag: CYBERTF{GagarineI}

You Are Almost There (100 points)

What is the password hidden in Twitter? (Use the file downloaded from Deep in My Mind)

Here we do not need to use Volatility, basically, it is only a little OSINT challenge. We just need to go to this Twitter account: https://twitter.com/GagarineI

drawing

If you open the first picture “Introduction to MFTECmd”, you will find the 4th flag.

drawing

Flag: CYBERTF{P455W0RD_M4N4G3R_15_D3PR3C4D3D}

You Are Arrived (100 points)

What is the flag hidden in the visited Github? (Use the file downloaded from Deep in My Mind)

This challenge is like the Twitter one. You know that a way to access GitHub profile is using the browser, right? Let’s check what we can see in the explorer.exe memdump (here I used the same file that I had already extracted, the 2808.dmp).

drawing

As you can see the user visited several times the https://github.com/1v4n0v profile.

Let’s do a little OSINT in this Github profile.

drawing

Ok… we can see that there are some activities (and those activities are public!)

As the activities are public, we can see the commits.

drawing

If you check the commit of the 14th June, you will find a cipher.

drawing

drawing

It looks like Base64. Let’s decrypt it with CyberChef:

drawing

Amazing we just found our last flag!

Flag: CYBERTF{TH4NK_Y0U_L1NU5_F0R_G1T}

CONCLUSION:

I can say that I was out of my comfort zone, and I really enjoyed it.

It was a great experience because I needed to learn everything from scratch, googling around, and trying to find my way.

I could help my team earn a total of 475 points by solving those challenges! It was awesome. 💪

If you want to learn more about Forensics and do some challenges, I advise you to try out this room on TryHackMe. https://tryhackme.com/room/bpvolatility

I hope that my writeup helped you to understand better all the aspects of this CTF. If you want to read more writeups like this one or have any questions, you can find me on Twitter @drop.

Stay safe, stay curious!