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
Herramientas/GitHubGitHub/frizb/wordlistgen
Descifrado de ContraseñasFuzzingPruebas de Penetración
GitHubfrizb/wordlistgen

WordListGen

Generador de Listas de Palabras en Python Super Simple para Fuzzing y Fuerza Bruta en Python

Ver Repositorio
5618hace 5 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

WordListGen

¡Súper simple generador de listas de palabras en Python para craqueo de contraseñas (Hashcat)!

Sé lo que estás pensando. ¿Por qué crear otro generador de listas de palabras? Bueno, necesitaba algo muy simple que pudiera modificar sobre la marcha para obtener los generadores de caracteres exactos para la tarea en cuestión. Este script es completamente funcional por sí mismo, pero está pensado para ser modificado fácilmente durante CTF's o pruebas de penetración sobre la marcha.

Python help documentation:

root@kitploit:~
> wordlistgen.py -h
WordListGen: 0.2 Updated: June 2, 2019
usage: wordlistgen.py [-h] [-all] [-lower] [-upper] [-leet] [-swap] [-ntlm]
                      [-baseword] [-capitalize] [-orig] [-min MIN] [-max MAX]
                      [-inputfolder file] [-input file] [-output file]

WordListGen - Very Simple Word List Morpher - Creates a list of unique
words for fuzzing / brute forcing

optional arguments:
  -h, --help         show this help message and exit
  -all               Runs all word list morphers
  -lower             Lowercase each word on the input list
  -upper             Uppercase each word on the input list
  -leet              Leetspeak each word on the input list
  -swap              Swap the case of the word list
  -ntlm              Parse an NTLM Hash dump list for plaintext words to use
                     in a wordlist
  -baseword          Base words only (Post-process) Strips any numbers or
                     symbols from the generated word list
  -capitalize        Capitalize the first letter of the word list
  -orig              Include the original word from the word list
  -min MIN           Minimum word size (default: 4)
  -max MAX           Maximum word size (default: 32)
  -inputfolder file  Specify a folder of wordlists to crawl, process and
                     combine
  -input file        Input wordlist (default: wordlist.txt)
  -output file       Output wordlist (default: wordlistout.txt)

Example use and output

root@kitploit:~
> wordlistgen.py -all
WordListGen: 0.2 Updated: June 2, 2019
DONE!
 Wordlist input:	wordlist.txt
 Wordlist output:	wordlistout.txt
Descargar herramienta