Advent of Cyber 4 (2022): Day 7Write-up [TryHackMe]

Amol Rangari
5 min readDec 7, 2022

--

Welcome to Day 6 of Advent of Cyber 4 (2022) write-up .To check the room,

Click here

[Day 6] CyberChef Maldocs roasting on an open fire

Today’s task discussesCyberChef.

Learning Objectives

  • What is CyberChef
  • What are the capabilities of CyberChef
  • How to leverage CyberChef to analyze a malicious document
  • How to deobfuscate, filter and parse the data.
  • Using CyberChef for mal doc analysis
  • Let’s utilize the functions, also known as recipes, from the left panel in CyberChef to analyze the malicious doc. Each step is explained below:
  • 1) Add the File to CyberChef
  • Drag the invoice.doc file from the desktop to panel 1 as input, as shown below. Alternatively, the user can add theDivision_of_labour-Load_share_plan.doc file by Open file as input icon in the top-right area of the CyberChef page.

What is the version of CyberChef found in the attached VM?

Ans:- 9.49.0

2) Extract strings

Strings are ASCII and Unicode-printable sequences of characters within a file. We are interested in the strings embedded in the file that could lead us to suspicious domains. Use the strings function from the left panel to extract the strings by dragging it to panel 3 and selecting All printable chars as shown below:

If we examine the result, we can see some random strings of different lengths and some obfuscated strings. Narrow down the search to show the strings with a larger length. Keep increasing the minimum length until you remove all the noise and are only left with the meaningful string, as shown below:

(ii)Question :- How many recipes were used to extract URLs from the malicious doc?

Answer:- 10

3) Remove Pattern

Attackers often add random characters to obfuscate the actual value. If we examine, we can find some repeated characters [ _ ]. As these characters are common in different places, we can use regex (regular expressions) within the Find / Replace function to find and remove these repeated characters.

To use regex, we will put characters within the square brackets [ ] and use backslash \ to escape characters. In this case, the final regex will be[\[\]\n_] where \n represents the Line feed, as shown below:

It’s evident from the result that we are dealing with a PowerShell script, and it is using base64 Encoded string to hide the actual code.

4) Drop Bytes

To get access to the base64 string, we need to remove the extra bytes from the top. Let’s use the Drop bytes function and keep increasing the number until the top bytes are removed.

5) Decode base64

Now we are only left with the base64 text. We will use the From base64 function to decode this string, as shown below:

6) Decode UTF-16

The base64 decoded result clearly indicates a PowerShell script which seems like an interesting finding. In general, the PowerShell scripts use the Unicode UTF-16LE encoding by default. We will be using the Decode text function to decode the result into UTF-16E, as shown below:

7) Find and Remove Common Patterns

Forensic McBlue observes various repeated characters ' ( ) + ' ` " within the output, which makes the result a bit messy. Let's use regex in the Find/Replace function again to remove these characters, as shown below. The final regex will be ['()+'"`].

8) Find and Replace

If we examine the output, we will find various domains and some weird letters ]b2H_ before each domain reference. A replace function is also found below that seems to replace this ]b2H_ with http.

Let’s use the find / Replace function to replace ]b2H_ with http as shown below:

9) Extract URLs

The result clearly shows some domains, which is what we expected to find. We will use the Extract URLs function to extract the URLs from the result, as shown below:

iii)Question :- We found a URL that was downloading a suspicious file; what is the name of that malware?

Answer:- mysterygift.exe

10) Split URLs with @

The result shows that each domain is followed by the @character, which can be removed using the split function as shown below:

11) Defang URL

Great — We have finally extracted the URLs from the malicious document; it looks like the document was indeed malicious and was downloading a malicious program from a suspicious domain.

Before passing these domains to the SOC team for deep malware analysis, it is recommended to defang them to avoid accidental clicks. Defanging the URLs makes them unclickable. We will use Defang URL to do the task, as shown below:

iv)Question :- What is the last defanged URL of the bandityeti domain found in the last step?

Answer:- hxxps[://]cdn[.]bandityeti[.]THM/file/index/

v)Question :- What is the ticket found in one of the domains? (Format: Domain/<GOLDEN_FLAG>)

Answer:- THM_MYSTERY_FLAG

--

--

Amol Rangari
Amol Rangari

Written by Amol Rangari

I am Cyber Security Expert, Security Researcher and bug hunter

No responses yet