Gaurav Davre
5 min readJan 8, 2023

### 009 Mastering

./Malicious Document

Attacking with malware through malicious documents is not new but considering how malware attacker use different techniques has become challenging for malware analysts to identify the patterns, extract, and understand the malicious code.

Here we have one tool: to analyze a malicious document

CyberChef

I learned about this tool

in #tryhackme’s #adventofcyber

Malicious documents may contain a suspicious command to get executed when opened, an embedded malware as a dropper (malware installer component) or may have some C2 domains to connect to.

CyberChef :

is a web-based application — used to slice, dice, encode, decode, parse and analyze data or files.

  1. Add the text or file in panel 1.
    2. Panel 2 contains various functions, also known as recipes that we use to encode, decode, parse, search or filter the data.
    3. Drag the functions or recipes from Panel 2 into Panel 3 to create a recipe.
    4. The output from the recipes is shown in panel 4.
    5. Click on bake to run the functions added in Panel 3 in order. We can select AutoBake to automatically run the recipes as they are added.

Usage CyberChef for mal doc analysis

Below is Just an example)

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 the`Division_of_labour-Load_share_plan.doc` file by Open file as input icon in the top-right area of the CyberChef page.

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:

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:

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:

Here we have cracked the malicious link successfully.

ref ./ TryHackMe

Gaurav Davre

Cybersecurity enthusiast, always welcome to challenges.