mirror of
https://github.com/hashcat/hashcat
synced 2025-04-06 10:06:37 +02:00
Fixed incorrect progress-only result in a special race condition
This commit is contained in:
parent
11b1189e53
commit
306d40a13a
@ -18,6 +18,7 @@
|
|||||||
- Fixed the validation of the --brain-client-features command line argument (only values 1, 2 or 3 are allowed)
|
- Fixed the validation of the --brain-client-features command line argument (only values 1, 2 or 3 are allowed)
|
||||||
- Fixed cracking of Cisco-PIX and Cisco-ASA MD5 passwords in mask-attack mode if mask > length 16
|
- Fixed cracking of Cisco-PIX and Cisco-ASA MD5 passwords in mask-attack mode if mask > length 16
|
||||||
- Fixed the 7-Zip parser to allow the entire supported range of encrypted and decrypted data lengths
|
- Fixed the 7-Zip parser to allow the entire supported range of encrypted and decrypted data lengths
|
||||||
|
- Fixed incorrect progress-only result in a special race condition
|
||||||
|
|
||||||
##
|
##
|
||||||
## Improvements
|
## Improvements
|
||||||
|
12
src/opencl.c
12
src/opencl.c
@ -2325,6 +2325,16 @@ int run_cracker (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param, co
|
|||||||
device_param->outerloop_pos = 0;
|
device_param->outerloop_pos = 0;
|
||||||
device_param->outerloop_left = pws_cnt;
|
device_param->outerloop_left = pws_cnt;
|
||||||
|
|
||||||
|
// we ignore the time to copy data over pci bus in this case
|
||||||
|
|
||||||
|
if (user_options->speed_only == true)
|
||||||
|
{
|
||||||
|
choose_kernel (hashcat_ctx, device_param, highest_pw_len, pws_cnt, 0, 0);
|
||||||
|
choose_kernel (hashcat_ctx, device_param, highest_pw_len, pws_cnt, 0, 0);
|
||||||
|
|
||||||
|
hc_timer_set (&device_param->timer_speed);
|
||||||
|
}
|
||||||
|
|
||||||
// loop start: most outer loop = salt iteration, then innerloops (if multi)
|
// loop start: most outer loop = salt iteration, then innerloops (if multi)
|
||||||
|
|
||||||
for (u32 salt_pos = 0; salt_pos < hashes->salts_cnt; salt_pos++)
|
for (u32 salt_pos = 0; salt_pos < hashes->salts_cnt; salt_pos++)
|
||||||
@ -2845,6 +2855,8 @@ int run_cracker (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param, co
|
|||||||
}
|
}
|
||||||
|
|
||||||
device_param->outerloop_msec = total_msec * hashes->salts_cnt * device_param->outerloop_multi;
|
device_param->outerloop_msec = total_msec * hashes->salts_cnt * device_param->outerloop_multi;
|
||||||
|
|
||||||
|
device_param->speed_only_finish = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user