Ubuntu – extract files within an exe file

kalikali-linux-toolswine

I am trying to work through practical malware analysis and there are a series of labs hidden within an exe file. Since I just need the files to analyse , and would rather not download an entire windows os, is there a way to extract the lab files from within the exe ?

the files in question are located here: Labs | Running the Gauntlet

As of right now when i try to run wine i get an error that says that

Could not load wine-gecko. HTML rendering will be disabled.

I have spent the last 4 hours uninstalling, reinstalling, looking at tutorials etc and im really frustrated because all i need are the fucking files .

Best Answer

The file PracticalMalwareAnalysis-Labs.exe is self-extractor RAR archive. I don't have an idea why 7z or Ubuntu's Archive Manager both can't handle it properly. So you need unrar tool for Ubuntu:

sudo apt update
sudo apt install unrar

Then you can extract the content of the file by the command:

unrar x PracticalMalwareAnalysis-Labs.exe

Where x - Extract files with full path.

Related Question