statsprocessor v0.03
#10
Changes:
  • Added -t shortcut for --threshold
  • Added --reverse parameter which lets the markov generator generate the words from right to left, not from left to right.
    Code:
    root@sf:~/statsprocessor-0.03# ./sp64.bin --pw-min 4 -t 4 rockyou.hcstat | head -10          
    anan
    anar
    anal
    anam
    anen
    aner
    anel
    anem
    anir
    anil
    root@sf:~/statsprocessor-0.03# ./sp64.bin --pw-min 4 -t 4 rockyou.hcstat --reverse | head -10
    nana
    rana
    lana
    mana
    nena
    rena
    lena
    mena
    rina
    lina
  • Changed how that most important parameter "--threshold" is interpreted by statsprocessor to a bit more easy-to-understand usage. You just define a maximum. This is the maximum number of chars which are added to the markov-table. One exception: In case of "0" it will allow all chars and you will end up in an ordered brute-force.
    Code:
    root@sf:~/statsprocessor-0.03# ./sp64.bin --threshold 1 rockyou.hcstat | head -10
    a
    an
    ana
    anan
    anana
    ananan
    ananana
    anananan
    anananana
    ananananan
    root@sf:~/statsprocessor-0.03# ./sp64.bin --threshold 2 rockyou.hcstat | head -10
    a
    e
    an
    ar
    en
    er
    ana
    ane
    ara
    are
    root@sf:~/statsprocessor-0.03# ./sp64.bin --threshold 0 rockyou.hcstat | head -10
    a
    e
    1
    0
    i
    2
    o
    n
    r
    l
    [*]
  • Added parameter -s and -l like in maskprocessor. Well you can also call it support for restore and distribution
    Code:
    root@sf:~/xy/statsprocessor-0.03# ./sp64.bin rockyou.hcstat ?a?a?a -s ctu -l ctk
    ctu
    cts
    ct1
    ctc
    ctl
    ctm
    ct2
    ctz
    ctb
    ct0
    ctw
    ctn
    ctk
    [*]


Messages In This Thread
statsprocessor v0.03 - by atom - 06-10-2012, 02:58 PM
RE: statsprocessor v0.01 - by M@LIK - 06-10-2012, 03:09 PM
RE: statsprocessor v0.01 - by Hash-IT - 06-10-2012, 03:16 PM
RE: statsprocessor v0.01 - by Pixel - 06-10-2012, 03:29 PM
RE: statsprocessor v0.01 - by rurapenthe - 06-10-2012, 06:27 PM
RE: statsprocessor v0.01 - by .::Rizwan::. - 06-10-2012, 09:21 PM
RE: statsprocessor v0.02 - by atom - 06-10-2012, 09:53 PM
RE: statsprocessor v0.02 - by Hash-IT - 06-11-2012, 12:23 AM
RE: statsprocessor v0.02 - by ntk - 06-11-2012, 11:34 PM
RE: statsprocessor v0.03 - by atom - 06-13-2012, 12:38 PM
RE: statsprocessor v0.03 - by atom - 09-07-2012, 05:13 PM