How to filter a wordlist
#1
Hi, 
I know that the password i'm trying to crack begins with D and has 10 letters (in plain-text), and i was wondering how can i filter from a word list only the passwords that meet these requirements

Any help would be appreciated.
Reply
#2
(06-06-2019, 05:08 PM)Phantom1 Wrote: Hi, 
I know that the password i'm trying to crack begins with D and has 10 letters (in plain-text), and i was wondering how can i filter from a word list only the passwords that meet these requirements

Any help would be appreciated.

https://hashcat.net/wiki/doku.php?id=mask_attack
Reply
#3
mask attack is absolutely not what OP needs.

have a look at grep
Reply
#4
(06-07-2019, 11:01 AM)undeath Wrote: mask attack is absolutely not what OP needs.

have a look at grep

Well, i am using a windows machine. Is there any equivalent?
Reply
#5
you can probably use power shell on windows: select-string

furthermore,
grep.exe for instance can be used on windows too. also mingw/cygwin for windows could be an option
Reply
#6
Or Windows Subsystem for Linux is yet another alternative on how to get grep on Windows.
Reply
#7
(06-07-2019, 11:01 AM)undeath Wrote: mask attack is absolutely not what OP needs.

Sorry I skimmed thru the question to fast and didn't notice the aspect of filtering a wordlist. Maaa bad!
Reply