Line-length exception? - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: General Talk (https://hashcat.net/forum/forum-33.html) +--- Thread: Line-length exception? (/thread-7140.html) |
Line-length exception? - palindrom - 12-29-2017 Hi! I'm trying to test-run hashcat on known MD5crypt hashes. One has password 'instrument', other one 'hashcat' (took it from hashcat homepage so it should be good). I see no error here. Please help C:\hashcat-4.0.1>rs.cmd C:\hashcat-4.0.1>hashcat64.exe -w 3 -t 500 -a 0 -o rs.txt rs.hash example.dict hashcat (v4.0.1) starting... * Device #2: This hardware has outdated CUDA compute capability (3.5). For modern OpenCL performance, upgrade to hardware that supports CUDA compute capability version 5.0 (Maxwell) or higher. * Device #2: WARNING! Kernel exec timeout is not disabled. This may cause "CL_OUT_OF_RESOURCES" or related errors. To disable the timeout, see: https://hashcat.net/q/timeoutpatch nvmlDeviceGetCurrPcieLinkWidth(): Not Supported nvmlDeviceGetClockInfo(): Not Supported nvmlDeviceGetClockInfo(): Not Supported nvmlDeviceGetTemperatureThreshold(): Not Supported nvmlDeviceGetTemperatureThreshold(): Not Supported nvmlDeviceGetUtilizationRates(): Not Supported OpenCL Platform #1: Intel(R) Corporation ======================================== * Device #1: Intel(R) Core(TM)2 Quad CPU Q9650 @ 3.00GHz, skipped. OpenCL Platform #2: NVIDIA Corporation ====================================== * Device #2: GeForce GTX 780, 768/3072 MB allocatable, 12MCU Hashfile 'rs.hash' on line 1 ($1$xkfnaGGJ$UPdJZfMHwYlHT/wbpmjtN1): Line-length exception Hashfile 'rs.hash' on line 2 ($1$28772684$iEwNOgGugqO9.bIz5sk8k/): Line-length exception No hashes loaded. Started: Fri Dec 29 01:33:49 2017 Stopped: Fri Dec 29 01:33:49 2017 C:\hashcat-4.0.1> RE: Line-length exception? - philsmd - 12-29-2017 you need to use -m 500 (or the long version of it: --hash-type 500): Code: hashcat64.exe -m 500 -a 0 -w 3 -o rs.txt rs.hash example.dict RE: Line-length exception? - DanielG - 12-29-2017 You are setting -t (--markov-threshold Threshold X when to stop accepting new markov-chains) to 500, you probably want -m 500 (-m, --hash-type) to 500 which is md5crypt, MD5 (Unix), Cisco-IOS $1$ (MD5) Always double check yourself at https://hashcat.net/wiki/doku.php?id=hashcat RE: Line-length exception? - palindrom - 12-29-2017 O... Wow... Thanks guys. I really shouldn't work late after midnight. What was written: -t 500 What I read: The type is 500 ... |