hashcat Forum
6.1.1 potfile - 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: 6.1.1 potfile (/thread-9490.html)

Pages: 1 2


RE: 6.1.1 potfile - philsmd - 09-24-2020

yeah, good that you guys pinpointed it. I didn't really look at the hash type, because thought you were just looking for the file in general.

Yeah, but it already works like this since several years: https://github.com/hashcat/hashcat/commit/3ad6fab63eed1f6b2cafe04b180b695015a043d4 (almost 2 years)

https://github.com/hashcat/hashcat/blob/3dd89bc63c2614b57db58bd7b05d2d61dcc5ab75/src/modules/module_06211.c#L94

There are multiple hash types that do not have potfile support:
Code:
$ grep -rl 'potfile_disable = true' src/modules/ | sort -u
src/modules/module_05200.c
src/modules/module_06211.c
src/modules/module_06212.c
src/modules/module_06213.c
src/modules/module_06221.c
src/modules/module_06222.c
src/modules/module_06223.c
src/modules/module_06231.c
src/modules/module_06232.c
src/modules/module_06233.c
src/modules/module_06241.c
src/modules/module_06242.c
src/modules/module_06243.c
src/modules/module_09000.c
src/modules/module_13711.c
src/modules/module_13712.c
src/modules/module_13713.c
src/modules/module_13721.c
src/modules/module_13722.c
src/modules/module_13723.c
src/modules/module_13731.c
src/modules/module_13732.c
src/modules/module_13733.c
src/modules/module_13741.c
src/modules/module_13742.c
src/modules/module_13743.c
src/modules/module_13751.c
src/modules/module_13752.c
src/modules/module_13753.c
src/modules/module_13761.c
src/modules/module_13762.c
src/modules/module_13763.c
src/modules/module_13771.c
src/modules/module_13772.c
src/modules/module_13773.c
src/modules/module_14600.c



RE: 6.1.1 potfile - royce - 09-24-2020

Huh - when I did my veracrypt testing in late 2018, it used the filename. This seems like the approach that would cause the least amount of confusion. Otherwise, we'll have a steady stream of users asking this question.

https://www.techsolvency.com/passwords/hashcat-veracrypt/
https://www.techsolvency.com/passwords/hashcat-veracrypt/veracrypt.potfile

Code:
hashcat_ripemd160_aes_13711.vc:hashcat
hashcat_ripemd160_aes-twofish_13712.vc:hashcat
hashcat_ripemd160_serpent_13711.vc:hashcat
hashcat_ripemd160_serpent-aes_13712.vc:hashcat
hashcat_ripemd160_serpent-twofish-aes_13713.vc:hashcat
hashcat_ripemd160_twofish_13711.vc:hashcat
hashcat_ripemd160_twofish-serpent_13712.vc:hashcat
hashcat_sha256_aes_13751.vc:hashcat
hashcat_sha256_aes-twofish_13752.vc:hashcat
hashcat_sha256_serpent_13751.vc:hashcat
hashcat_sha256_serpent-aes_13752.vc:hashcat
hashcat_sha256_serpent-twofish-aes_13753.vc:hashcat
hashcat_sha256_twofish_13751.vc:hashcat
hashcat_sha256_twofish-serpent_13752.vc:hashcat
hashcat_sha512_aes_13721.vc:hashcat
hashcat_sha512_aes-twofish_13722.vc:hashcat
hashcat_sha512_serpent_13721.vc:hashcat
hashcat_sha512_serpent-aes_13722.vc:hashcat
hashcat_sha512_serpent-twofish-aes_13723.vc:hashcat
hashcat_sha512_twofish_13721.vc:hashcat
hashcat_sha512_twofish-serpent_13722.vc:hashcat
hashcat_whirlpool_aes_13731.vc:hashcat
hashcat_whirlpool_aes-twofish_13732.vc:hashcat
hashcat_whirlpool_serpent_13731.vc:hashcat
hashcat_whirlpool_serpent-aes_13732.vc:hashcat
hashcat_whirlpool_serpent-twofish-aes_13733.vc:hashcat
hashcat_whirlpool_twofish_13731.vc:hashcat
hashcat_whirlpool_twofish-serpent_13732.vc:hashcat
hashcat_streebog-512_aes_13771.vc:hashcat

If reverting to this behavior is undesirable, maybe a warning shown to the screen for all potfile_disable formats?


RE: 6.1.1 potfile - pbies - 09-24-2020

Can you share how the problem will be solved?


RE: 6.1.1 potfile - philsmd - 09-24-2020

Code:
hashcat -m 6211 -a 3 -w 3 -o cracked.txt -i container.tc ?b?b?b



RE: 6.1.1 potfile - royce - 09-25-2020

I've also opened an issue to explore improvements here:

https://github.com/hashcat/hashcat/issues/2554