Posts: 3
	Threads: 1
	Joined: May 2019
	
	
 
	
	
		Hi everybody
every time i tried to crack hash did not work
look this command
Code:
hashcat -m 0 -a 1 '/root/md5/hashpassword.txt' '/root/md5/rockyou.txt'
it's not working ....
Why ???!!!
	
 
 
	
	
	
		
	Posts: 2,301
	Threads: 11
	Joined: Jul 2010
	
	
 
	
	
		"it's not working" is no acceptable problem description. If you have error messages post them. If you have no error messages explain what you are experiencing and what you would expect to happen.
In your case you're using a1 with only one dict.
	
	
	
	
	
 
 
	
	
	
		
	Posts: 3
	Threads: 1
	Joined: May 2019
	
	
 
	
	
		 (05-23-2019, 09:07 PM)undeath Wrote:  "it's not working" is no acceptable problem description. If you have error messages post them. If you have no error messages explain what you are experiencing and what you would expect to happen.
In your case you're using a1 with only one dict.
Error Message :
Code:
Usage: hashcat [options]... hash|hashfile|hccapxfile [dictionary|mask|directory]...
Try --help for more help.
 
	
	
	
	
 
 
	
	
	
		
	Posts: 3
	Threads: 1
	Joined: May 2019
	
	
 
 
	
	
	
		
	Posts: 2,266
	Threads: 16
	Joined: Feb 2013
	
	
 
	
	
		-a 1 is for concatenating two dicts, use -a 0 instead (with one dict)
Code:
hashcat -m 0 -a 0 '/root/md5/hashpassword.txt' '/root/md5/rockyou.txt'
the correct answer was already provided by undeath