1

I want to generate a password list that has 8 characters like this:

Characters are: Pp|Aa|Ss|Ww|o0|Rr|Dd

First character only can be Pp, second Aa@, .... to end.

How can I make this list using crunch or similar scripts?

schroeder
  • 123,438
  • 55
  • 284
  • 319
MinLo
  • 13
  • 3

2 Answers2

2

You could use a tool that expands regexes, such as exrex:

$ git clone https://github.com/asciimoo/exrex
$ cd exrex
$ python exrex.py '[pP][aA@][sS$][sS$][wW][oO0][rR][dD]'
password
passworD
passwoRd
passwoRD
passwOrd
passwOrD
passwORd
passwORD
passw0rd
…
Sjoerd
  • 28,707
  • 12
  • 74
  • 102
0

Not sure if this will do exactly what you want it to, but there's a python tool on github called CUPP that generates user passwords based on information fed to it. Depending on the information fed to it, it generates a relatively large wordlist.

The code here