hashcat Forum
cutb - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Support (https://hashcat.net/forum/forum-3.html)
+--- Forum: hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip (https://hashcat.net/forum/forum-28.html)
+--- Thread: cutb (/thread-1136.html)



cutb - jtknapp - 05-02-2012

Is there a timeline when hashcat-utils-0.6 will be released?

I am looking for the new cutb application.


RE: cutb - M@LIK - 05-02-2012

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


RE: cutb - atom - 05-02-2012

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



RE: cutb - M@LIK - 05-02-2012

Okay. Cool : )

But you didn't answer the gentleman's question. LOL


RE: cutb - atom - 05-03-2012

yeah, i dont know when its getting released.


RE: cutb - jtknapp - 05-03-2012

Ok thanks.

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