hashcat Forum

Full Version: wpa Brute-force (only 8 char number)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi i want check only 8 char number
?
PHP Code:
cudaHashcat-plus64.exe -a 3 -m 2500 ---increment-min=--increment-max="C:\ss.hccap" -??1?1?1?1?1?1?1?
this code is correct?
Looks good. You could skip the -1 and put directly the mask ?d?d?d?d?d?d?d?d
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?
very Tanx Worked.