【運動幣】【運動幣】即日起開放電視運動館500元/120天運動幣方案,歡迎訂購
words = ["casa", "rabat", "wac"]
years = ["2024", "1975", "2022"]
with open("maroc_wordlist.txt", "w") as f:
    for w in words:
        f.write(w + "\n")
        f.write(w.capitalize() + "\n")
        for y in years:
            f.write(w + y + "\n")
            f.write(y + w + "\n")

A wordlist is a text file containing a collection of words, phrases, and character combinations used in brute-force attacks or dictionary attacks. While global lists like rockyou.txt contain millions of common passwords, they often lack cultural context.

A Moroccan-exclusive wordlist takes a different approach. It compiles passwords that are culturally relevant to Morocco, significantly increasing the success rate of authorized security audits within the region.

To create a wordlist password TXT file, you can use a text editor or a specialized tool. Here's an example of how to create a simple wordlist:

Example:

password123
qwerty
maroc2022
# generate all 8-char combinations starting with "casa"
crunch 8 8 -t casa%%% -o maroc_casa.txt