mirror of
https://github.com/hashcat/hashcat
synced 2024-11-20 23:27:31 +01:00
Fix password candidate generation for test.pl for mode 14000 and 14100
This commit is contained in:
parent
72edd17481
commit
a509221868
@ -8069,6 +8069,11 @@ sub rnd
|
||||
{
|
||||
my $c = get_random_chr (0x30, 0x39);
|
||||
|
||||
if (($mode == 14000) || ($mode == 14100))
|
||||
{
|
||||
$c &= 0xfe;
|
||||
}
|
||||
|
||||
push (@word_arr, $c);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user