This is the solution for the decryption part of Incibe's "Infected" Forensics Challenge
This Python script allows the decyption of the data that was being exfiltrated in the challenge.
Make sure you have Python 3 installed on your system.
-
Create a Python venv (virtual environment) named
decryptor:python -m venv decryptor -
cdinto the venv's directory:cd decryptor -
Activate the Python virtual environment (venv):
UNIX based systems (Linux/MacOS):
source bin/activateWindows:
.\Scripts\activate -
Clone the repository:
git clone https://github.com/JFiTech/Incibe-Infected-Forensics-Challenge.git -
cd into the
Incibe-Infected-Forensics-Challengedirectory:cd Incibe-Infected-Forensics-Challenge -
Install the dependencies:
pip install -r requirements.txt -
Running the program:
python DecryptorPoC.py -
Deactivating the virtual environment (venv):
deactivate