hashcat Forum

Full Version: cutb
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a timeline when hashcat-utils-0.6 will be released?

I am looking for the new cutb application.
I don't see anything special in cutb tool:
Code:
cat wordlist
apple1234
theman
fastcars

cut -c 1-4 wordlist
appl
them
fast

cut -c 1-4 --complement wordlist
e1234
an
cars

grep -Eo "....$" wordlist
1234
eman
cars

grep -Eo ".....$" wordlist | cut -c 1-3
e12
hem
tca

Anything else? xD
i see only two reasons:

1. it works on windows without any additional dll

2. its much faster than grep:

Quote:# time ../maskprocessor-0.66/mp64.bin -1 ?l?u ?1?1?1?1 | grep -Eo "....$" > /dev/null

real 0m6.828s
user 0m6.900s
sys 0m0.050s

Quote:# time ../maskprocessor-0.66/mp64.bin -1 ?l?u ?1?1?1?1 | ./cutb.bin -4 > /dev/null

real 0m1.100s
user 0m1.190s
sys 0m0.140s
Okay. Cool : )

But you didn't answer the gentleman's question. LOL
yeah, i dont know when its getting released.
Ok thanks.

(05-03-2012, 10:08 AM)atom Wrote: [ -> ]yeah, i dont know when its getting released.