mirror of
https://github.com/hashcat/hashcat.git
synced 2025-01-11 00:01:16 +00: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);
|
my $c = get_random_chr (0x30, 0x39);
|
||||||
|
|
||||||
|
if (($mode == 14000) || ($mode == 14100))
|
||||||
|
{
|
||||||
|
$c &= 0xfe;
|
||||||
|
}
|
||||||
|
|
||||||
push (@word_arr, $c);
|
push (@word_arr, $c);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user