Posts: 3
Threads: 2
Joined: Oct 2013
hi i want check only 8 char number
?
PHP Code:
cudaHashcat-plus64.exe -a 3 -m 2500 -i --increment-min=8 --increment-max=8 "C:\ss.hccap" -1 ?d ?1?1?1?1?1?1?1?1
this code is correct?
Posts: 621
Threads: 57
Joined: May 2010
Looks good. You could skip the -1 and put directly the mask ?d?d?d?d?d?d?d?d
Posts: 16
Threads: 5
Joined: Feb 2013
if you only want 8 chars, you can also leave the increment
and because your path has no spaces, you can leave the quotes, so yor code should look like:
PHP Code:
cudaHashcat-plus64.exe -a 3 -m 2500 C:\ss.hccap ?d?d?d?d?d?d?d?d?d
Posts: 3
Threads: 2
Joined: Oct 2013
10-29-2013, 01:53 PM
(This post was last modified: 10-29-2013, 02:12 PM by ata.)
very Tanx Worked.