Questions tagged [crunch]
crunch is a wordlist generator.
20 questions
1vote
0answers
268views
How to limit number strings with crunch
I'm currently trying to generate a very specific word list. The words generated should go like this: crunch 9 9 -t @%%%%%%,,-o test.txt But one of the constraints that I have given myself is that the ...
2votes
2answers
407views
Need help generating list with crunch
I am new to Kali Linux. I am trying to generate a wordlist of 6- whatever character words where: the first part is an English word that starts with a capital letter the last 5 characters are 8765. It ...
2votes
1answer
1kviews
Password generation
I'm trying to generate all possible variation of a password. The base word is like "PleaseSub!" and I need all possible version of it with uppercase, lowercase, etc.. I know there is ...
2votes
2answers
2kviews
Wordlist generator with a certain pattern
I am trying to generate a wordlist. I am using crunch but I am stuck at defining the pattern I want the words to be generated. For example, I want to define a rule such as this: Password: Ameri948 ca# ...
0votes
1answer
1kviews
Strange data size when generating a very large word list with Crunch
While trying out the wordlist generator crunch in Kali Linux 2020.1 I came across the following behaviour: root@kali:/home/kali# crunch 10 10 \ ...
0votes
1answer
3kviews
Generate every alphanumerical combination in crunch within 8-20 characters in length
I want to generate combinations in sequential range of the length 8-20 with the following characters: abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*()~`";.,/[]-= How ...
0votes
0answers
273views
Issue using John The Ripper
First things first, I'm a newbie so, bear with me... I created a word list with a combination of a possible password for a certain user using Crunch (it's the dictionary output) and need to use John ...
1vote
1answer
3kviews
Crunch password list, no duplicate characters [closed]
How can I have Crunch create a password list where the passwords contain no duplicate characters at all? eg. I currently have crunch 3 3 ABCDEFGHIJKLMNOPQRSTUVWXYZ -d 1 which prevents 'ZZZ' but ...
0votes
1answer
1kviews
Limiting the number of duplicate character types in crunch
I'm trying to generate a password list of 10 character passwords containing only a combination of 3 - 6 numbers and 3 - 6 uppercase letters. I see option -d which allows a set limit of duplicates of ...
1vote
1answer
777views
Specify Amount of type of character Crunch
I'm sure these questions pop up a lot, but I can't find one that does what I'm looking for. So, I'm trying to use crunch to generate a wordlist with specific amounts of each type of character, i.e. 2 ...
0votes
1answer
3kviews
Wordlist generator for a specific pattern
I know my Windows machine password is Passw0rd!. I want to generate it using crunch so that I'd know how it works. I tried crunch 9 9 -t Passw@@@@ But here @ refers to lowercase character. I want it ...
1vote
1answer
2kviews
Define Patterns in Crunch
I am trying to achieve a very specific pattern with crunch. The Wireless Router I use has a very specific Pattern used for the default Password generated by my Provider. I want to create a wordlist or ...
1vote
0answers
2kviews
crunch password generation with multiple character sets
I'm trying to use crunch to generate a password list. However, if I add all necessary characters into one character set, as in: file: charset_huge.lst complex = [...
1vote
3answers
3kviews
Piping crunch into hydra
Is it possible to pipe the output from crunch into hydra ? I tried this, but it doesn't work: crunch 1 6 123456 --stdout | hydra -S -l [email protected] -v -V -e nsr -s 465 smtp.gmail.com smtp
0votes
2answers
1kviews
Crunch wordlist with different number of words
I'm trying to generate a wordlist, but I need some help with it. Let's say I execute the command: crunch 1 1 -p cat dog cow Crunch will generate the following: catcowdog catdogcow cowcatdog ...