Skip to content
KitploitKITPLOIT
FerramentasBlog
Enviar
FerramentasBlog
Enviar

Ferramentas de Hacking, PenTest e Cibersegurança para o seu Arsenal de Segurança!

Kitploit é um diretório de ferramentas de hacking, cibersegurança e pentesting. Descubra as últimas atualizações de projetos para encontrar vulnerabilidades, analisar sistemas, automatizar testes e fortalecer sua segurança.

··Feeds·Contato·Privacidade·© 2026 Kitploit

Diretório de Ferramentas

Categorias

Ver todas as categorias
Loading categories
WordListGen — Gerador de Lista de Palavras Super Simples em Python para Fuzzing e Força Bruta em Python | Kitploit
Ferramentas/GitHubGitHub/frizb/wordlistgen
Quebra de SenhasFuzzingTestes de Penetração
GitHubfrizb/wordlistgen

WordListGen

Gerador de Lista de Palavras Super Simples em Python para Fuzzing e Força Bruta em Python

Ver Repositório
56185há 5 anosRevisado pelo Kitploit

Mais Populares

Ver todos →

Descubra as ferramentas mais usadas pela nossa comunidade.

Explore todas as ferramentas

Navegue pela nossa coleção de ferramentas

Ver todas as ferramentas →
Compartilhar

WordListGen

Gerador de Lista de Palavras Super Simples em Python para Quebra de Senhas (Hashcat)!

Eu sei o que você está pensando. Por que criar outro gerador de listas de palavras? Bem, eu precisava de algo muito simples que eu pudesse modificar rapidamente para obter os geradores de caracteres exatos para a tarefa em mãos. Este script é totalmente funcional por si só, mas foi pensado para ser facilmente modificado on the fly durante CTFs ou testes de penetração.

Documentação de ajuda do Python:

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)

Exemplo de uso e saída

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