WARNING: Hash 'crackme': Line-length exception - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Ancient Versions (https://hashcat.net/forum/forum-46.html) +--- Forum: Very old oclHashcat-plus Support (https://hashcat.net/forum/forum-23.html) +--- Thread: WARNING: Hash 'crackme': Line-length exception (/thread-2048.html) |
WARNING: Hash 'crackme': Line-length exception - dronin - 02-06-2013 Hi there, I tried to crack a shadow file of a linux box, so I took the shadow and copied it into a file called crackme. This file looks like: Code: cat crackme but I get an error: sudo cudaHashcat-plus64.bin -m0 crackme Warning: cudaHashcat-plus64.bin is running from /opt/oclhashcat-plus-bin so be careful of relative paths. WARNING: Hash 'crackme': Line-length exception ERROR: No hashes loaded is there a easy way to find the lines which cause die length exception so I can delete them? RE: WARNING: Hash 'crackme': Line-length exception - mastercracker - 02-06-2013 (02-06-2013, 02:38 PM)dronin Wrote: Hi there,In this case it consider that all of them are not the right length. You use -m0 (MD5) and you have to use -m 500 (MD5(unix)). RE: WARNING: Hash 'crackme': Line-length exception - undeath - 02-06-2013 Quote:Warning: cudaHashcat-plus64.bin is running from /opt/oclhashcat-plus-bin so be careful of relative paths. (02-06-2013, 03:09 PM)mastercracker Wrote: In this case it consider that all of them are not the right length. You use -m0 and you have to use -m 500. wrong. This is another problem. RE: WARNING: Hash 'crackme': Line-length exception - Kuci - 02-06-2013 rename 'crackme' to 'crackme.hash' and use -m 500 RE: WARNING: Hash 'crackme': Line-length exception - dronin - 02-06-2013 `--> sudo cudaHashcat-plus64.bin -m500 crackme.hash Warning: cudaHashcat-plus64.bin is running from /opt/oclhashcat-plus-bin so be careful of relative paths. WARNING: Hash 'crackme.hash': Line-length exception ERROR: No hashes loaded RE: WARNING: Hash 'crackme': Line-length exception - Kuci - 02-06-2013 Hmm, why the heck do you run hashcat as SU ? Try without sudo. RE: WARNING: Hash 'crackme': Line-length exception - undeath - 02-06-2013 hashcat doesn't care for file extensions. Just read the goddamn error msg... Quote:Warning: cudaHashcat-plus64.bin is running from /opt/oclhashcat-plus-bin so be careful of relative paths. RE: WARNING: Hash 'crackme': Line-length exception - epixoip - 02-06-2013 those also are not valid md5crypt hashes. although they start with '$1$', they have no salt and variable-length output. RE: WARNING: Hash 'crackme': Line-length exception - mastercracker - 02-08-2013 (02-06-2013, 04:13 PM)dronin Wrote: `--> sudo cudaHashcat-plus64.bin -m500 crackme.hashThere has to be a space between -m and 500 also... RE: WARNING: Hash 'crackme': Line-length exception - undeath - 02-08-2013 (02-08-2013, 07:39 AM)mastercracker Wrote: There has to be a space between -m and 500 also... no space needed. |