Posts: 2
	Threads: 1
	Joined: Jun 2019
	
	
 
	
	
		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.
	
	
	
	
	
 
 
	
	
	
		
	Posts: 389
	Threads: 1
	Joined: Nov 2017
	
	
 
	
	
		 (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
	 
	
	
	
	
 
 
	
	
	
		
	Posts: 2,301
	Threads: 11
	Joined: Jul 2010
	
	
 
	
	
		mask attack is absolutely not what OP needs.
have a look at 
grep
	 
	
	
	
	
 
 
	
	
	
		
	Posts: 2
	Threads: 1
	Joined: Jun 2019
	
	
 
	
	
		 (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?
	
 
	
	
	
	
 
 
	
	
	
		
	Posts: 2,266
	Threads: 16
	Joined: Feb 2013
	
	
 
	
	
		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
	
	
	
	
	
 
 
	
	
	
		
	Posts: 40
	Threads: 11
	Joined: Feb 2018
	
	
 
	
	
		Or Windows Subsystem for Linux is yet another alternative on how to get grep on Windows.
	
	
	
	
	
 
 
	
	
	
		
	Posts: 389
	Threads: 1
	Joined: Nov 2017
	
	
 
	
	
		 (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!