mirror of
https://github.com/hashcat/hashcat.git
synced 2024-12-16 11:48:15 +00:00
Fix outputting wrong password for weak-hash-check in case user defined -r or -g
This commit is contained in:
parent
ed91e69ae3
commit
2e61685f48
@ -4545,6 +4545,10 @@ static void weak_hash_check (hc_device_param_t *device_param, const uint salt_po
|
||||
|
||||
data.dictfile = (char *) weak_hash_check;
|
||||
|
||||
uint cmd0_rule_old = data.kernel_rules_buf[0].cmds[0];
|
||||
|
||||
data.kernel_rules_buf[0].cmds[0] = 0;
|
||||
|
||||
/**
|
||||
* run the kernel
|
||||
*/
|
||||
@ -4594,6 +4598,8 @@ static void weak_hash_check (hc_device_param_t *device_param, const uint salt_po
|
||||
device_param->kernel_params_buf32[31] = 0;
|
||||
|
||||
data.dictfile = dictfile_old;
|
||||
|
||||
data.kernel_rules_buf[0].cmds[0] = cmd0_rule_old;
|
||||
}
|
||||
|
||||
// hlfmt hashcat
|
||||
|
Loading…
Reference in New Issue
Block a user