hashcat Forum
the correct syntax to pipe maskprocessor | cudahashcat in linux? - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html)
+--- Forum: General Help (https://hashcat.net/forum/forum-8.html)
+--- Thread: the correct syntax to pipe maskprocessor | cudahashcat in linux? (/thread-4184.html)

Pages: 1 2


the correct syntax to pipe maskprocessor | cudahashcat in linux? - Quest - 03-16-2015

tried almost everything.

cd /usr/share/maskprocessor && ./mp.bin -q 3 -r 4 ?d?d?d?d?d?d?d?d?d?d | cd /usr/share/cudahashcat/ && ./cudaHashcat64.bin -w 3 -t 10 -m 2500 /root/capture.hccap -a 3

while this is the correct path for both maskprocessor and cudahashcat, the whole syntax doesn't work. Any ideas what I'm doing wrong here? Really an example would have been really helpful.


RE: the correct syntax to pipe maskprocessor | cudahashcat in linux? - coolbry95 - 03-16-2015

why not just copy the mask processor to the cudahashcat dir?


RE: the correct syntax to pipe maskprocessor | cudahashcat in linux? - Quest - 03-16-2015

Hi coolbry,

because that's the way it installed, but I might just do that.


RE: the correct syntax to pipe maskprocessor | cudahashcat in linux? - Quest - 03-16-2015

:~# cd /usr/share/cudahashcat/ && ./mp64.bin -q 3 -r 4 ?d?d?d?d?d?d?d?d?d?d
./mp64.bin: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not found (required by ./mp64.bin)


LOL


RE: the correct syntax to pipe maskprocessor | cudahashcat in linux? - coolbry95 - 03-16-2015

what os do you have? sounds like you need to upgrade.


RE: the correct syntax to pipe maskprocessor | cudahashcat in linux? - Quest - 03-16-2015

fresh/updated The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali) install.

How do you install maskprocessor? This is so weird.


RE: the correct syntax to pipe maskprocessor | cudahashcat in linux? - coolbry95 - 03-16-2015

try something like this. it should work

Code:
wget https://hashcat.net/files/cudaHashcat-1.33.7z; 7za x cudaHashcat-1.33-nv-pdf-fix.7z; cd cudaHashcat-1.33; wget https://github.com/jsteube/maskprocessor/releases/download/v0.73/maskprocessor-0.73.7z; 7za x maskprocessor-0.73.7z; ./mp64.bin -q 3 -r 4 ?d?d?d?d?d?d?d?d?d?d | ./cudaHashcat64.bin -w 3 -t 10 -m 2500 /root/capture.hccap -a 3

EDIT:
alright tried the commands myself didnt work. I did this without testing. Anyway the idea is to extract cudahashcat then put the extract maskprocessor then cp over maskprocessor to the cudahashcat dir.


RE: the correct syntax to pipe maskprocessor | cudahashcat in linux? - bsec - 03-16-2015

Try:
./usr/share/maskprocessor/mp.bin -q 3 -r 4 ?d?d?d?d?d?d?d?d?d?d | /usr/share/cudahashcat/cudaHashcat64.bin -w 3 -t 10 -m 2500 /root/capture.hccap -a 3


RE: the correct syntax to pipe maskprocessor | cudahashcat in linux? - epixoip - 03-16-2015

your command does not do what you think it does. stdin mode implies wordlist attack. if you specify -a 3 it will ignore stdin, and you'll just be doing a mask attack with the default mask and threshold of 10.


RE: the correct syntax to pipe maskprocessor | cudahashcat in linux? - Quest - 03-16-2015

Hi epixoip,

How can I limit the number of repetitions and frequency?

markov chains is very good, but still spews out things like "metassse" or "meta2777" So what I'm trying to do is eliminate 3 repetitions (555) and maximum of the same (5x5x5x5).

I'm trying to do that by piping maskprocessor in cudahashcat in a linux environment with the '-r' and '-q' arguments. I'm doing something wrong because it does not work.

atom referred me to PACK. That does not work for me.

@bsec, I will give that a go.