Crunch password list generation
Let’s use the following command to have Crunch generate a wordlist containing all combinations of 4 letters:crunch 4 4 ABCDEFGHIJKLMNOPQRSTUVWXYZ -o /root/Desktop/wordlist.txt
The generated Crunch password list has a size of 2 MB
Let’s use the following command to have Crunch generate a wordlist containing all combinations of 5 letters:
crunch 5 5 ABCDEFGHIJKLMNOPQRSTUVWXYZ -o /root/Desktop/wordlist.txt
The generated Crunch password list has a size of only 67 MB
The next wordlist we are going to make is a wordlist containing all possible combinations with 5 letters follow by 1980. The 1980 represents a year of birth for instance, commonly used as a password in combination with a name:
crunch 8 8 ABCDEFGHIJKLMNOPQRSTUVWXYZ
-t @@@@1980 -o /root/Desktop/wordlist.txt
The generated Crunch password list has a size of only 3 MB.