MalGen
MalGen is a cross-platform malware generator, used to interactively configure and generate malware executables and code snippets on the fly.
The tool functions in such a way that allows the user to configure multiple options for various techniques like Encryption, Obfuscation, Payload Placement, Injections, etc. Once configured, the tool will compile a binary using semi-hardcoded C snippets reflecting the techniques and options the user selected.
Installation
Using git
:
1
git clone https://github.com/partyh4t/MalGen.git
Once the repository has been cloned, you can simply run python3 malgen.py
to access the interactive prompt. I haven’t gotten around to creating a requirements.txt
file just yet, so keep in mind certain python modules may not be installed on your system. Typically you can install it with pip install MODULE_NAME
Usage
Once within the prompt, running help
or ?
will bring up a help menu, showcasing the various commands and modules available to you.
The program is designed to be used in the following way:
- Load a file containing shellcode into the program with
malgen> shellcode PATH/TO/SHELLCODE_FILE.bin
.(Adding shellcode generation via msfvenom within the program is something I have planned) - Select and configure various techniques like Encryption, Obfuscation, Payload Placement, etc by entering the name of the technique you want to configure, this will alter the prompt and enter you into a different section specifically for configuring that technique. e.g.
malgen> encryption
->malgen::encryption>
. - Each module/technique has specific settings you can configure and select, like aes, rc4, or xor, within the encryption module as an example. Selecting a specific technique can be done using
technique use
. So if for instance you want to specify your own xor key and then tell the program to use xor in the final binary, we could issuexor key 01010101
alongsidexor use
. The order in which you run these commands does not matter. - Once the desired modules and techniques have been selected and configured, issuing
malgen> generate
will combine the corresponding technique snippets into a final .c file, which is then compiled usinggcc
.
Notes
This tool is still very early in development, and is lacking most major functionality. Especially as this is my first actual big project, expect the source code to be vomit-inducing and contain plenty of bugs.
At this point in time, the program does not generate a final compiled binary, but instead prints out the snippets with the configurations applied to the terminal. This way the tool can atleast still provide some use for the time being.
More module/technique specific documentation coming soon.