1
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:
jsteube 2017-02-28 11:56:27 +01:00
parent 72edd17481
commit a509221868

View File

@ -8069,6 +8069,11 @@ sub rnd
{
my $c = get_random_chr (0x30, 0x39);
if (($mode == 14000) || ($mode == 14100))
{
$c &= 0xfe;
}
push (@word_arr, $c);
}