Welcome to the Maldump project, and thank you for your interest in contributing to Maldump. This document will briefly explain how the project and workflow works. Please read the whole document so you have a clear picture of how everything is set up.
You can join our community Discord server to get in touch with all the funs and devs of Maldump.
- maldump - The Maldump root directory containing the main function handles all the operations. Also, the types and utils are located here.
- test - This directory stores all the important data used to test Maldump functionality.
- root - This directory represents the root of the target system (Currently supporting only Windows).
Linter and type checking are prepared to keep the codebase healthy.
There should always be an extended version name, e.g.: "--dest" and an optional short version, e.g.: "-d".
Here are some tips for developing on Windows (+ WSL 2). Download and install the VS code from the official web page(https://code.visualstudio.com/). Run VS code and install the following extensions:
- Python - Python extension for Visual Studio Code
- Flake8 - Flake8 extension for Visual Studio Code
- WSL - Visual Studio Code WSL
- Remote Development - Visual Studio Code Remote Development Extension Pack
- Python Auto Venv - Python Auto Venv (Archived)
# clone repo
git clone git@github.com:<your-fork>.git
# install requirements
pip install -r requirements.txt
pip install -r requirements-dev.txt
# start maldump
python3 -m maldump
# to run tests:
python3 -m unittest
# to check typing:
mypy maldump
# to check code style:
flake8 . --show-source --statistics
# to check imports:
isort . --check --diff
Use eicar.com together with RegShot in virtual enviroment. CyberChef might be handy for the analysis too.
To contribute to this project, create new issue depending on the type.
Changes should be prepared in a separate branch with a reasonable name.
- Fork this repository.
- Create a branch:
git checkout -b <branch_name>
- Make your changes and commit them:
git commit -m '<commit_message>'
- Push to the original branch:
git push origin <project_name/location>
- Create a pull request linked to the issue.
name | value |
---|---|
@Jezdo0 | Developer |
@JohnyBembel | Lead developer |
@knez | Lead developer |