hex password
#7
(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 Sad

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

Best regards,
Azren


Messages In This Thread
hex password - by freestaff - 06-27-2016, 01:53 PM
RE: hex password - by stepMode - 06-27-2016, 02:11 PM
RE: hex password - by freestaff - 06-27-2016, 02:23 PM
RE: hex password - by philsmd - 06-27-2016, 03:44 PM
RE: hex password - by stepMode - 06-27-2016, 03:45 PM
RE: hex password - by freestaff - 06-27-2016, 07:31 PM
RE: hex password - by azren - 06-27-2016, 08:35 PM
RE: hex password - by freestaff - 06-27-2016, 11:28 PM