Oversized Line Detected - 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: Oversized Line Detected (/thread-11317.html) |
Oversized Line Detected - lotsofarms - 02-19-2023 Got the hash file using John the Ripper zip2john >hash.txt. File is really big - 78mb. I figured I'd try cracking with my gpu, as my (weaker) laptop using JtR has been trying for a few days now. Running the line: hashcat -m 11600 -a3 lockedhash.txt I get the message: Counted lines in lockedhash.txt Oversized line detected! Truncated 78628551 bytes Followed by: No hashes loaded Is there anyway to extend the "oversized line detected" issue? I'm still quite new to this, so apologies if it's a noob question. Any help is appreciated, thanks. Capture.PNG (Size: 38.77 KB / Downloads: 6) RE: Oversized Line Detected - marc1n - 02-20-2023 Your hash is probably not supported past hashcat and you need to use john the ripper to break it. RE: Oversized Line Detected - rodrigo.Brasil - 03-28-2023 (02-19-2023, 08:02 PM)lotsofarms Wrote: Got the hash file using John the Ripper zip2john >hash.txt. File is really big - 78mb. I figured I'd try cracking with my gpu, as my (weaker) laptop using JtR has been trying for a few days now. I think you are doing it wrong. The code -m 11600 is for 7Zip. You need to use 7z2john.pl. To test it, I created a 7zip with a password: Then I run the 7z2john.pl to extract the hash with john the ripper. Code: perl 7z2john.pl teste.7z Just remove the filename teste.7z: and save in a file. Now run the code and find the password: Code: hashcat.exe -O -w 3 -m 11600 -a 3 7zip.txt --potfile-disable ?l?l Maybe you are using the wrong code to extract the hash of the file. Was it 13600 - WinZip ?? You can create a test file like I did and test youself if it work. Then, try with your file! |