.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4. .TH SP64 "1" "September 2016" "sp64 v0.011" "User Commands" .SH NAME sp64 \- word generator based on per-position Markov chains .SH SYNOPSIS .B sp64 [\fI\,options\/\fR]... \fI\,hcstat-file \/\fR[\fI\,filter-mask\/\fR] .SH 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. .PP sp by atom, High\-Performance word generator based on hashcat markov stats .PP * Startup: .TP \fB\-V\fR, \fB\-\-version\fR Print version .TP \fB\-h\fR, \fB\-\-help\fR Print help .PP * Increment: .TP \fB\-\-pw\-min\fR=\fI\,NUM\/\fR Start incrementing at NUM .TP \fB\-\-pw\-max\fR=\fI\,NUM\/\fR Stop incrementing at NUM .PP * Markov: .TP \fB\-\-markov\-disable\fR Emulates maskprocessor output .TP \fB\-\-markov\-classic\fR No per\-position tables .TP \fB\-\-threshold\fR=\fI\,NUM\/\fR Filter out chars after NUM chars added Set to 0 to disable .PP * Misc: .TP \fB\-\-combinations\fR Calculate number of combinations .TP \fB\-\-hex\-charset\fR Assume charset is given in hex .PP * Resources: .TP \fB\-s\fR, \fB\-\-skip\fR=\fI\,NUM\/\fR skip number of words (for restore) .TP \fB\-l\fR, \fB\-\-limit\fR=\fI\,NUM\/\fR limit number of words (for distributed) .PP * Files: .TP \fB\-o\fR, \fB\-\-output\-file\fR=\fI\,FILE\/\fR Output\-file .PP * Custom charsets: .TP \fB\-1\fR, \fB\-\-custom\-charset1\fR=\fI\,CS\/\fR User\-defineable charsets .TP \fB\-2\fR, \fB\-\-custom\-charset2\fR=\fI\,CS\/\fR Example: .HP \fB\-3\fR, \fB\-\-custom\-charset3\fR=\fI\,CS\/\fR \fB\-\-custom\-charset1=\fR?dabcdef .TP \fB\-4\fR, \fB\-\-custom\-charset4\fR=\fI\,CS\/\fR sets charset ?1 to 0123456789abcdef .PP * Built\-in charsets: .IP ?l = abcdefghijklmnopqrstuvwxyz ?u = ABCDEFGHIJKLMNOPQRSTUVWXYZ ?d = 0123456789 ?s = !"#$%&'()*+,\-./:;<=>?@[\e]^_`{|}~ ?a = ?l?u?d?s ?h = 8 bit characters from 0xc0 \- 0xff ?D = 8 bit characters from german alphabet ?F = 8 bit characters from french alphabet ?R = 8 bit characters from russian alphabet .SH 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. .SH "REPORTING BUGS" Please report bugs upstream to the statsprocessor issue tracker on GitHub: https://github.com/hashcat/statsprocessor/issues .SH COPYRIGHT This tool is developed and maintained by Jens Steube under the MIT License.