Questions tagged [crunch]

crunch is a wordlist generator.

19 questions
3
votes
3 answers

Generate wordlist with exactly 4 letters and 6 numbers in any order?

I need to configure crunch so that it produces a wordlist with the following set of rules: Exactly 10 characters long Contains exactly 4 letters, which have to be a-f (all lowercase) Contains exactly 6 numbers, which have to be 2-9 The letters and…
Tom
  • 31
  • 1
  • 2
2
votes
1 answer

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 something like 2^10 options but I can't figure out how to generate…
John
  • 23
  • 2
2
votes
2 answers

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# Words: [A|a]meri[\d\d\d][space|no…
2
votes
1 answer

Using crunch, but using words like chars

I would like to generate a wordlist that contains words and 2 digit numbers. I want crunch to shuffle them like 15password15, password15, 15password... Is there any way I can do that with crunch or do I need another script?
s3lcuk
  • 21
  • 1
  • 2
1
vote
2 answers

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 ends in a period I've been trying for the last…
Rgh001
  • 51
  • 1
1
vote
1 answer

Crunch password list, no duplicate characters

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 allows 'ZYZ'. I wish to also exclude passwords like…
flames500
  • 11
  • 2
1
vote
1 answer

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 numbers, 1 symbol, 3 uppercase, 1 lowercase,…
Seth Painter
  • 143
  • 1
  • 5
1
vote
1 answer

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 at least Pipe it through to aircrack-ng with the…
1
vote
0 answers

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 = [abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*()] ... then I…
JohnyD
  • 169
  • 6
1
vote
3 answers

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 ---------@gmail.com -v -V -e nsr -s 465 smtp.gmail.com smtp
Killoso32
  • 11
  • 1
  • 2
0
votes
1 answer

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 \ abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890,.-:! -o chars.txt Crunch will now generate…
0
votes
1 answer

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 could I achieve this with kali's crunch wordlist generator…
secdev1l
  • 3
  • 2
0
votes
0 answers

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 The Ripper to sort through all the possible…
user226855
0
votes
1 answer

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 individual characters but I'm looking for an…
0
votes
1 answer

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 to be like Passw???? where ? can be any character.…
Ehack2
  • 11
  • 2
1
2