02-22-2021, 01:24 PM
added a simple test with plain md5, test-password was same behavior, hashcat cannot recognize this plaintext-password in pot-file, resulting in recracking it again and again
potfile after 3 runs
md5 and i think all other hashes are fixed in size so everything after the first : should be parsed as password, which doesnt seem to happen
in the code for module0 i found
so i think the length of md5 is fixed, but i dont know where to look now (oufile, potfile?)
what i saw in the code, that salt_min and salt_max are set to 0 and 256 which seems to affect global all hashes and so affecting the first hahsmode 2811, dont know wheter this could be fixed by "fixing" the salt size to a const for this/all hashmodes with a salt (variable salt length would be a problem right?)
Code:
test1:test1
potfile after 3 runs
Code:
723210cefac9372c968e5bfd98cb022b:test1:test1
723210cefac9372c968e5bfd98cb022b:test1:test1
723210cefac9372c968e5bfd98cb022b:test1:test1
md5 and i think all other hashes are fixed in size so everything after the first : should be parsed as password, which doesnt seem to happen
in the code for module0 i found
Code:
token.len_min[0] = 32;
token.len_max[0] = 32;
so i think the length of md5 is fixed, but i dont know where to look now (oufile, potfile?)
what i saw in the code, that salt_min and salt_max are set to 0 and 256 which seems to affect global all hashes and so affecting the first hahsmode 2811, dont know wheter this could be fixed by "fixing" the salt size to a const for this/all hashmodes with a salt (variable salt length would be a problem right?)