Hashing NTLM with frequencies - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Hashing NTLM with frequencies (/thread-8560.html) |
Hashing NTLM with frequencies - slawson - 08-15-2019 I just downloaded the huge dump of NTLM hashes, but the file has a colon and the number of frequencies at the end of each line. Sorry for such a basic question, but what parameter do I use to ignore the : and the number at the end of each line. I am getting the No Hashes Found error. Thanks. RE: Hashing NTLM with frequencies - undeath - 08-16-2019 not supported. you need to preprocess the hash file. RE: Hashing NTLM with frequencies - slawson - 08-16-2019 Thanks for the quick reply. Do you know of a Windows command to truncate the lines of text? RE: Hashing NTLM with frequencies - DanielG - 08-16-2019 I would suggest getting a text editor with nice features such as Notepad++, this has a more powerful search and replace functionality (using regex for example). Then with a few tutorials you can edit the file to only include the NTLM hashes RE: Hashing NTLM with frequencies - slawson - 08-16-2019 I just went ahead and copied the 20GB text file to Linux and used the following command: cut -c -32 filename.txt > hashes.txt Surprisingly it only took about 1 minute for Linux to process the file. RE: Hashing NTLM with frequencies - slawson - 08-16-2019 Just curious, what is the maximum number of hashes that can be loaded in one process? I'm getting an error CL_INVALID_BUFFER_SIZE. RE: Hashing NTLM with frequencies - undeath - 08-17-2019 hard to say, depends on the hash type and your vram and possibly the attack you're running. |