Skip to main content

Huntress CTF Challenge Writeups: Hot Off the Press: A PowerShell Malware Challenge

I'm finally getting around to uploading these. My team and I had a blast doing the Huntress CTF and we learned quite a bit doing them! Formatting might be weird on some of these. They're copy/pastes from word docs.

Hot off the Press: A PowerShell Malware Challenge

Hot off the Press is a malware CTF challenge from the 2023 Huntress CTF. This write-up walks through the initial discovery, de-obfuscation, and solving of the challenge. The actual flag will be redacted from the document, but interested parties should be able to follow the steps and derive it themselves. While the write-up assumes a base level of knowledge regarding the command line, Linux, cryptography, and PowerShell. Most tools and commands will be accompanied by short explanations. This is a fun entry-level malware reversal challenge that is completable by all entry-level cybersecurity students with a little research.

Step 1: File Discovery

The file “hot_off_the_press” was given with the explanation that this malware was from a news article. The article is about numerous vulnerabilities targeting WS_FTP Server Ad Hoc Transfer Module within their WS_FTP software.

Like most CTFs, this file didn’t have an extension telling us what it was. The “file” command comes in handy here, telling us that it is something called a UHARC archive.


It turns out that UHARC is an older compression software that was last updated in 2009. The command line tool can be found at the developer website https://sam.gleske.net/uharc/.  After identifying the file as a UHARC archive and installing the UHARC command line tool, the file can be renamed to include the uha extension.


 

Then, the UHARC tool can be used to extract the file from the archive.

 


The file that gets extracted is a PowerShell script file.


 

 

Step Two: De-Obfuscation and Analysis

We can see that this file is all in one line, which makes it hard to read. With something like this, we’ll want to start separating the commands out into a more readable format. We can see a distinction from the cmd.exe command and the powershell commands being passed.



Something that sticks out here is that the switches passed to the powershell exe command are not complete. One quirk of PowerShell is that it auto-completes unfinished parameters. Attackers use this to obfuscate what commands they are running.

After spacing out the code a little more, we have something that is a lot more readable and approachable. We can see that the structure of the file is CMD execution of a PowerShell instance which is then executing some kind of code.



Knowing this, we can start to deobfuscate the code. I did this with the good ol’ find and replace. One of the patterns I saw was that commands and strings were being joined with “+”, which is a common way of joining things in PowerShell.



I also noticed that a lot of commands were using string replacements as well. In PowerShell, using a -f after a string will allow you to place characters in strings. Knowing this, I also went through and fixed all the strings.


After fixing all the strings, we’re left with something like this:


As we can see, there is a bunch of code and then a command executing a base64 string.

Using the find/replace tool in Notepad, I swapped out the brackets for their respective letters. 


Putting this into CyberChef, we get a result indicating that this is a Gzip archive.




Using CyberChef, we’re able to download the detected file. This requires some security disabling because Chrome doesn’t like you downloading malware. Defender may also hassle you here, but we can just ignore it 😉



The file is identified as a Trojan, so we’re on the right track!

  


 

Bringing the file back into our Linux environment, we can run some commands on it to verify the type.


 

Once we know it is definitely a Gzip archive, we can use Gzip to extract it.
 

 

Step Three: Solving

The file we get is another PowerShell script file. This one is not obfuscated outside of a single base64 string. This is interesting, and it doesn’t seem like the base64 string has any other layers of obfuscation on it.



Popping the base64 line into CyberChef gets us an encoded URL.


 

Using CyberChef again, we can decode the URL into the flag!



Comments

Popular posts from this blog

Using PGPy to encrypt and decrypt files and messages

 PGPy is a library for python that enables the creation, storage, and encryption/decryption of PGP keys and files in python. Recently, in a small project to reacquaint myself with python, I used PGPy for key generation and encryption and decryption. That project can be found in my github at  https://github.com/lpowell . The goal of the project was to use command-line switches to control the program, and to provide basic encryption and decryption capabilities, along with rot13 and base64 encoding.  First, to load in a key use key, _ = pgpy.PGPKey.from_file(keyfilename) . This loads the key from either a binary or ASCII armored file. You can swap out .from_file for .from_blob , if you plan on using a key stored in a string or bytes object rather than a file. In my example code, I pull the key from a file, as I found it to be the simpler method.  Next, you'll need to open a file or create a string or bytes object that contains the message you wish to encrypt. We'll call this file

Using the Ubertooth One to sniff and intercept Bluetooth packets

While researching for my individual video project I came across this tool which allows for the sniffing and interception of bluetooth packets. This article covers some of the basic functionality of an Ubertooth One.  It's really quite interesting to see all the possibilities with devices like these. The tech behind them is very interesting as well. Hopefully, I'll be able to integrate some of this technology into my project video and include a demo of some of the interesting things it can do.

Installing the Ubertooth on the Mac mini M1

 For my video project, one of the demonstrations included using an Ubertooth One to scan for Bluetooth and BLE packets. This blog post will cover the installation of the Ubertooth One on the Mac mini M1. The official install guide for Mac devices didn't work very well for me, and I had to install some extra tools in order to get it to work. The examples assume you are using Python 3, and have homebrew installed.  To begin, follow the instructions found here:  https://github.com/greatscottgadgets/ubertooth/wiki/Build-Guide . Additionally, you may find that you need to install pytq5, numpy, and qtpy. To do this, simply run Python3 pip install pyqt5, numpy, qtpy. This will install the required libraries needed to run the Ubertooth tools. There are multiple ways to install pip on an OS X device, but I suggest using homebrew to install python3, which should install pip as well. Next, you will need to update the firmware of the device. When downloading the tools, a firmware directory sh