Sorting wordlists

Jomtek

Active member
Contributor
Joined
Dec 30, 2019
Messages
1,162
Reaction score
13
Credits
115
Hello. I've downloaded a few wordlists, but there are a lot of passwords I don't need.
I want to sort my wordlists by length (remove all passwords smaller than 7 characters).
I can't see any option allowing me to do that on hashcat.

Thank you
 

carnivore1

Active member
Contributor
Joined
Dec 30, 2019
Messages
2,899
Reaction score
5,591
Credits
12,705
cat Words.txt | uniq | awk 'length >=8 && length <=20' > word.txt

example...sort, remove dupes, if you want words to be 8->20 in length..or change to what you want.....
 

carnivore1

Active member
Contributor
Joined
Dec 30, 2019
Messages
2,899
Reaction score
5,591
Credits
12,705
yeah, those are linux commands....sure there are many ways in windows also....will take a look into in a bit........
 

karkajoi

Active member
Contributor
Joined
Dec 30, 2019
Messages
856
Reaction score
313
Credits
1,625
forum.antichat.ru/attachments/10410/
this program has everything you need to work with dictionaries, but russian
 

Talented1

Active member
Joined
Feb 5, 2020
Messages
373
Reaction score
147
Credits
3,584
cat Words.txt | uniq | awk 'length >=8 && length <=20' > word.txt

example...sort, remove dupes, if you want words to be 8->20 in length..or change to what you want.....
For windows, download cygwin
Open the cygwin terminal, go to the directory "cd C:users/...."
And write the code.

Or you can use ulm tools
 
Top