Password crack creating wordlist

Briefly describe your issue below:
Hey everyone so looking for little advise im new at linux but starting early I’m 14years old and im trying to create a wordlist. That is 8 long and I have first 4 already which is lower case vann and last four are numbers last four of birth date or social been stuck for weeks now someone help me ive been using crunch thank you

What version of Parrot are you running? (include version (e.g. 4.6), edition(e.g. Home//KDE/OVA, etc.), and architecture (currently we only support amd64)

What method did you use to install Parrot? (Debian Standard / Debian GTK / parrot-experiment

Configured to multiboot with other systems? (yes / no)
No
If there are any similar issues or solutions, link to them below:

If there are any error messages or relevant logs, post them below:

Learn to use python, itertools lib and something called permutation. You will see the way :wink:

1 Like

So what do we know

  • 8 characters long
  • First 4 are ‘vann’
  • Last 4 are numbers

With crunch, you could use this command to generate a wordlist.

crunch 8 8 -t vann%%%% -o ./wordlist.txt

The two 8’s represent the min and max length.

The -t option allows you to create a mask, so the first 4 are always ‘vann’ and the last 4 are generated numbers. (’%’ represents 0-9)

The -o option is just the output file.

1 Like

Right on that what i was looking for… awesome been working my brain off… Thank’s Bro

1 Like

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.