Portuguese Password Wordlist Work
Portuguese password wordlists are specialized datasets used by security professionals to test the strength of credentials in Lusophone (Portuguese-speaking) contexts. Because users often choose passwords based on their native language, culture, and local interests, these lists are significantly more effective for regional targets than generic global lists like RockYou.txt Top Resources for Portuguese Wordlists PT-BR Passphrase Wordlist
: This project focuses on the shift toward passphrases rather than single words. It includes over 2.4 million phrases oriented toward Brazilian Portuguese and includes rule files to generate billions of permutations.
: Widely considered the "gold standard" for security testers, the SecLists GitHub repository
contains language-specific subdirectories. You can find Portuguese-specific common credentials and leaked password lists within its Passwords/Common-Credentials/Language-Specific : This is a specialized Brazilian Portuguese portuguese password wordlist work
list designed to help users create secure, memorable passphrases using a word list and dice rolls. Regional Leaks & Repositories
: Several GitHub contributors maintain databases specific to the region, such as danieldonda/wordlist , which are compiled from local data breaches. Why Language-Specific Lists Matter
Standard English dictionaries often miss culturally significant terms that are frequently used in Portuguese passwords, such as: Football (Soccer) Clubs : Names like are high-frequency targets. Common Names & Diminutives : Frequent use of names like Slang and Regionalisms : Words like (love), and felicidade (happiness) often appear in weak Portuguese passwords. seguranca-informatica.pt Pro-Tips for Effective Use 100k-most-used-passwords-NCSC.txt - GitHub Usage : Ensure that any use of a
Ethical and Legal Considerations
- Usage: Ensure that any use of a wordlist is for ethical, legal purposes, such as penetration testing with permission or educational research.
- Privacy: Be mindful of data privacy laws and regulations.
Phase 4: Accent Handling (Critical)
You must generate two versions of every accented word.
- Raw accented:
pão,você - De-accented:
pao,voce - Combinations:
você->v0c3
Use iconv to strip accents:
cat base_clean.txt | iconv -f utf-8 -t ascii//translit > base_no_accents.txt
Create a variant with no accents for password topologies
cat portuguese.txt | sed 's/[áâãà]/a/g; s/[éê]/e/g; s/[í]/i/g; s/[óôõ]/o/g; s/[ú]/u/g; s/[ç]/c/g' > portuguese_noaccent.txt Phase 4: Accent Handling (Critical) You must generate
6. Tools Used
cupp(Common User Passwords Profiler) – modified with PT names.crunch– for custom numeric/dictionary combos.hashcat– rule engine and mask attacks.wordlistctl– fetch live leaked wordlists and filter by PT.
1. Why Generic Wordlists Fail Portuguese Audits
Before diving into the technical "work" of building the list, one must understand the linguistic architecture of Portuguese passwords.
Unlike English speakers, Portuguese users face a unique set of challenges:
- Accents (Acentos): Characters like
á,ê,í,ô,ú,ç, andãare common in words like coração (heart) or pêssego (peach). Most English wordlists strip these to ASCII. A good Portuguese wordlist must handle accented characters and their unaccented variants (e.g.,coração->coracao). - Cultural Lexicon: A Brazilian user will use futebol, saudade, praia, or amor. A Portuguese user from Lisbon might use saudade, carro, casa, or computador. Without these roots, your brute-force dictionary attack will fail.
- Leet Speak Variations: Portuguese users apply l33t speak differently. For example, "casa" (house) becomes "c4s4", but "chave" (key) might become "ch4v3".
Conclusion: You cannot download a single English wordlist and run it against a Portuguese client. You must do the work of building a custom list.