How can find a sha256 hash start with ***** with hashcat & markprocessor?
#1
Instead of find a full hash, is there anyway for hashcat to find a bunch of hash start with a given prefix & print it to a file? How may i do that?
Reply
#2
have a look at -m 5100 = Half MD5 which does more or less exactly what you describe (just for MD5 instead of sha256)... the problem with too small prefixes is that there will be too many results/collissions and hashcat won't be able to print all of them (see https://github.com/hashcat/hashcat/blob/...xt#L37-L41)
Reply
#3
(12-26-2019, 11:38 AM)philsmd Wrote: have a look at -m 5100 = Half MD5 which does more or less exactly what you describe (just for MD5 instead of sha256)... the problem with too small prefixes is that there will be too many results/collissions and hashcat won't be able to print all of them (see https://github.com/hashcat/hashcat/blob/...xt#L37-L41)
this one need EXACT length of MD5, assume my prefix has 5 characters. Is there any option?
Reply