Skip to content
KitploitKITPLOIT
HerramientasBlog
Enviar
HerramientasBlog
Enviar

¡Herramientas de Hacking, PenTest y Ciberseguridad para tu Arsenal de Seguridad!

Kitploit es un directorio de herramientas de hacking, ciberseguridad y pentesting. Descubre las últimas actualizaciones de proyectos para encontrar vulnerabilidades, analizar sistemas, automatizar pruebas y fortalecer tu seguridad.

··Feeds·Contacto·Privacidad·© 2026 Kitploit

Directorio de Herramientas

Categorías

Ver todas las categorías
Loading categories
mwcfg — Una utilidad de extracción de configuración de malware modular y rica en funciones para MalDuck | Kitploit
Herramientas/GitHubGitHub/c3rb3ru5d3d53c/mwcfg
Herramientas DefensivasAnálisis EstáticoIngeniería InversaAnálisis de MalwareAnálisis de BinariosInteligencia de Amenazas
GitHubc3rb3ru5d3d53c/mwcfg

mwcfg

Una utilidad de extracción de configuración de malware modular y rica en funciones para MalDuck

Ver Repositorio
13315hace 2 añosRevisado por Kitploit

Más Populares

Ver todos →

Descubre las herramientas más usadas por nuestra comunidad.

Explora todas las herramientas

Explora nuestra colección de herramientas

Ver todas las herramientas →
Compartir

Extractor de Configuración de Malware

build license pypi-version pypi-downloads pypi-wheel issues stars

logo

Una herramienta de extracción de configuración de malware y módulos para MalDuck

Este proyecto es GRATIS, como en GRATIS 🍺, úsalo comercialmente, de forma privada o como mejor te parezca.

La forma más sencilla de usar este proyecto es visitar mwcfg.info, ¡y empezar a extraer configuraciones de malware de inmediato!

Si te gusta este proyecto y deseas donar 💰 para apoyar la lucha contra el malware...

Invítame a un 🍵, ya que no bebo 🍺, enviándome algo de ₿ a 16oXesi7uv3jdPZxxwarHSD2f3cNMpaih9

Instalación:

root@kitploit:~
sudo apt update
sudo apt install -y python-virtualenv python-is-python3 git-lfs gnupg ca-certificates
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
sudo apt update
sudo apt install mono-devel
git clone --recursive https://github.com/c3rb3ru5d3d53c/mwcfg.git
cd mwcfg/
virtualenv -p python3 venv
source venv/bin/activate
pip install -v .
git lfs --include tests/azorult.zip
unzip -P infected tests/azorult.zip tests/
mwcfg --input tests/azorult/ --modules modules/ --threads 4 --debug
mwcfg --input tests/azorult/ --list-modules

Instalación con PyPi:

root@kitploit:~
sudo apt install -y python-virtualenv python-is-python3
virtualenv venv/
source venv/bin/activate
pip install mwcfg
git clone https://github.com/c3rb3ru5d3d53c/mwcfg-modules.git modules/
mwcfg --input sample.bin --modules modules/ --debug

Instalación del servidor con Docker:

root@kitploit:~
sudo apt install -y docker.io make
sudo usermod -a -G docker $USER
make mwcfg-server        # Build Server
make mwcfg-server-start  # Start the Server
make mwcfg-server-status # Check Running Status
make mwcfg-server-logs   # Tail Logs
make mwcfg-server-stop   # Stop Server
make mwcfg-server-clean  # Delete Server

Una vez completado, navega a https://127.0.0.1

Alternativamente, puedes subir muestras y obtener resultados haciendo:

root@kitploit:~
curl --silent --insecure -X POST --upload-file sample.bin https://127.0.0.1

Uso de mwcfg:

root@kitploit:~
usage: mwcfg v1.0.0 [-h] [--version] [-i INPUT] -m MODULES [--list-modules] [-d] [-p] [-t THREADS] [-r] [-l LOG]

A Modular Malware Configuration Extraction Utility for MalDuck

optional arguments:
  -h, --help            show this help message and exit
  --version             show program's version number and exit
  -i INPUT, --input INPUT
                        Input File or Directory
  -m MODULES, --modules MODULES
                        Modules
  --list-modules
  -d, --debug           Debug
  -p, --pretty          Pretty Print Configs
  -t THREADS, --threads THREADS
                        Threads
  -r, --recursive       Recursive
  -l LOG, --log LOG     Log to File

Author: c3rb3ru5

Uso de mwcfg-server:

root@kitploit:~
usage: mwcfg-server v1.0.0 [-h] [--version] [--host HOST] [-p PORT] -m MODULES [-u UPLOADS] [-d]

A Modular Malware Configuration Extraction Server using MalDuck

optional arguments:
  -h, --help            show this help message and exit
  --version             show program's version number and exit
  --host HOST           Host
  -p PORT, --port PORT
  -m MODULES, --modules MODULES
                        Modules
  -u UPLOADS, --uploads UPLOADS
                        Uploads Directory
  -d, --debug

Author: c3rb3ru5

Instalación del framework Karton:

root@kitploit:~
sudo apt install -y python-virtualenv python-is-python3 git-lfs
git clone --recursive https://github.com/c3rb3ru5d3d53c/mwcfg.git
cd mwcfg/
virtualenv venv/
source venv/bin/activate
./setup.py install
pip install karton-config-extractor
karton-config-extractor --config-file karton.ini --modules modules/

Contribución de módulos:

Consulta CONTRIBUTING.md

Recursos adicionales:

  • MWDB
  • Documentación de MWDB
  • Karton Framework
  • Karton Config Extractor
  • MalDuck
  • Documentación de MalDuck
Descargar herramienta