Please note, this is a STATIC archive of website hashcat.net from 08 Oct 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
06-27-2016, 08:35 PM (This post was last modified: 06-27-2016, 08:36 PM by azren.)
(06-27-2016, 07:31 PM)freestaff Wrote: ty for the answer but how can i put the mask command i try to put
/root/cudaHashcat-2.01/cudaHashcat64.bin -m 2500 -a 3 /root/cudaHashcat-2.01/hccap/ceren.hccap -1 ?dabcdef /root/cudaHashcat-2.01/masks/rockyou-1-60.hcmask
first mask ?l?d?d?d?d?d?d?d in file but not working -1 ?dabcdef command becouse if i try;
/root/cudaHashcat-2.01/cudaHashcat64.bin -m 2500 -a 3 /root/cudaHashcat-2.01/hccap/ceren.hccap ?l?d?d?d?d?d?d?d same time for finish
If I understand you correctly, you are trying to do a brute-force / mask attack where you think the plain text password is 8 characters, and only consist of digit and lower case.
If that is the case you need to define your custom charsets as follows:
Code:
-1 ?d?l
which mean that if you do ?1?1?1?1?1?1?1?1 it will only tries digits and lower. so your command should be something like
Code:
cudaHashcat64.bin -m 2500 -a 3 /root/cudaHashcat-2.01/hccap/ceren.hccap -1 ?d?l ?1?1?1?1?1?1?1?1
or
If you think that that the password only contains digits and lower case letter abcdef, your custom charsets should be
Code:
-1 ?dabcdef
and your command should be something like
Code:
cudaHashcat64.bin -m 2500 -a 3 /root/cudaHashcat-2.01/hccap/ceren.hccap -1 ?dabcdef ?1?1?1?1?1?1?1?1