08-31-2012, 08:42 PM
(08-31-2012, 07:51 PM)quentusrex Wrote: Is there a particular best way to approach checking passwords where I have a large part of the md5 input, and the hash, but there is a section of 'random' variation?Use masks. Check the wiki if you don't know how. You will have to create a mask for each length that you want to try.
Such as:
1234567890?????qwertyuiop
Where I know the prefix and suffix, but not the length of the ? section, not the values. I was trying to construct a dictionary with each ? of a single length, then a set of rules that would try a character set but I had little success so far.