On-the-fly loading of gz wordlists - 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: On-the-fly loading of gz wordlists (/thread-9248.html) |
On-the-fly loading of gz wordlists - Mem5 - 05-23-2020 Quote:* changes v5.1.0 -> v6.0.0Seen in hashcat beta 1803. Just tried with a gz file: Code: $ wc -l dic* Hashcat sees: Code: Dictionary cache built: Edit: Code: $ file dic.gz Looks like the file has not been unzipped? Thanks. RE: On-the-fly loading of gz wordlists - royce - 05-23-2020 WFM: Code: $ hashcat --version RE: On-the-fly loading of gz wordlists - Mem5 - 05-23-2020 Weird.. I may have failed somewhere in the compress step.. RE: On-the-fly loading of gz wordlists - Mem5 - 05-24-2020 From a performance perspective I cannot see any loss of speed; how does hashcat handle gigas of compressed wordlist without spending minutes/hours on decompression? RE: On-the-fly loading of gz wordlists - royce - 05-24-2020 I'm not sure, but I think that decompressed data can be used "on the fly" - as soon as it's decompressed, without having to wait for the entire file to decompress. RE: On-the-fly loading of gz wordlists - Mem5 - 05-25-2020 Ok.. but what about "Dictionary cache building", hashcat have to decompress all the file first to know the statistics, number of passwords etc? RE: On-the-fly loading of gz wordlists - royce - 05-25-2020 Yes, that seems right. It would have to decompress the whole thing first, enough to analyze the statistics and then cache them. so I assume there would be some duplicated work, just like dictionary cache building without compression. |