1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
[DESCRIPTION]
Statsprocessor is a word generator based on per-position Markov chains
packed into a single stand-alone binary. The resulting words can then, for
example, be postprocessed and fed into Hashcat or other password recovery
tools.
[EXAMPLE]
The following example was made just to see what comes out of statsprocessor.
$ ./sp64.bin --pw-min 5 --pw-max 5 hashcat.hcstat ?l?l?l?l?l | head -9
In Markov chains we have a statistic generated which letter is following which
letter based on the analysis of the original input dictionary used to generate
the .hcstat. In this case the most used letter on the first position is the
letter "s". The program then looks up the Markov table with the key "s" to get
the most used letter after the letter "s" on position 0. In our case, it's the
letter "a". This chain continues until the end of the word, iterating through
all letters stored in the Markov table.
[REPORTING BUGS]
Please report bugs upstream to the statsprocessor issue tracker on GitHub:
https://github.com/hashcat/statsprocessor/issues
[COPYRIGHT]
This tool is developed and maintained by Jens Steube under the MIT License.
|