Posts: 2
	Threads: 1
	Joined: Dec 2017
	
	
 
	
	
		First time using hashcat and i wanted to see how it works but when i run the line :
hashcat64.exe -m0 -a3 -o cracked.txt hash.txt
i get the error:
Hash 'hash.txt': Line-length exception
No hashes loaded.
all that is in the file hash.txt is the example hash but nothing happens
Thanks for any help
	
	
	
	
	
 
 
	
	
	
		
	Posts: 929
	Threads: 4
	Joined: Jan 2015
	
	
 
	
		
		
		12-07-2017, 02:25 AM 
(This post was last modified: 12-07-2017, 02:32 AM by royce.)
		
	 
	
		Do you have extra (or too few) characters in your hash.txt file? This is what the line-length exception error means.
Code:
$ cat - >hash.txt
8743b52063cd84097a65d1633f5c74f5
$ cat hash.txt
8743b52063cd84097a65d1633f5c74f5
$ hashcat -m 0 -a 3 -o cracked.txt --quiet hash.txt
$ cat cracked.txt
8743b52063cd84097a65d1633f5c74f5:hashcat
Also if you are using hashcat 4.x, you probably want to add -O (use optimized kernels) unless you expect the password to be very long.
	
~
	
	
 
 
	
	
	
		
	Posts: 2
	Threads: 1
	Joined: Dec 2017
	
	
 
	
	
		I dont think there is to many or little characters all there is in the text file is:
8743b52063cd84097a65d1633f5c74f5
	
	
	
	
	
 
 
	
	
	
		
	Posts: 2,301
	Threads: 11
	Joined: Jul 2010
	
	
 
	
	
		hashcat cannot find your "hash.txt" file
	
	
	
	
	
 
 
	
	
	
		
	Posts: 929
	Threads: 4
	Joined: Jan 2015
	
	
 
	
	
		Ah, indeed! Very easy to forget that one - even if you're not new!
	
	
	
~