CZ workman
CZ workman

Reputation: 195

How to create wordlist with custom pattern

I am a newbie. I need to create wordlist with specified pattern. The pattern will look like XXXXX00000 where X are 5 english characters (different, but can be same, small from alphabet) and 00000 are 5 numbers (0-9). (There will not be some special characters like &, $, _, -...)

Can someone help me?

It will be nice, if someone will post Terminal command. For example using crunch.

Thank you.

Examples:

Upvotes: 1

Views: 1859

Answers (3)

Robert
Robert

Reputation: 1

github.com/adaywithtape/wlm does just about anything you want easy to use.I answered in the wrong place see description below.

Upvotes: -1

TWOfish
TWOfish

Reputation: 131

crunch 10 10 -t @@@@@%%%%% -o result.txt

Upvotes: 3

kalana sankalpa
kalana sankalpa

Reputation: 23

I made a program for you, save this as anyname.py and run. copy the output.

letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
numbers = "0123456789"

for a in range(len(letters)):
    for b in range(len(letters)):
        for c in range(len(letters)):
            for d in range(len(letters)):
                for e in range(len(letters)):
                    for f in range(len(numbers)):
                        for g in range(len(numbers)):
                            for h in range(len(numbers)):
                                for i in range(len(numbers)):
                                    for j in range(len(numbers)):
                                        print(letters[a] + letters[b] + letters[c] + letters[d] + letters[e] + numbers[f] + numbers[g] + numbers[h] + numbers[i] + numbers[j])

Upvotes: 1

Related Questions