mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-13 19:28:56 +00:00
verify test fix for -m 31900 = MetaMask Mobile Wallet
This commit is contained in:
parent
91095845b9
commit
b2fc157624
@ -44,7 +44,25 @@ sub module_generate_hash
|
||||
padding => "none"
|
||||
});
|
||||
|
||||
my $pt = "[{\"type\":\"HD Key Tree\",\"data\":{\"mnemonic\":\"ocean hidden kidney famous rich season gloom husband spring convince attitude boy\",\"numberOfAccounts\":1,\"hdPath\":\"m/44'/60'/0'/0\"}}]";
|
||||
my $pt = "";
|
||||
|
||||
if (! defined ($ct))
|
||||
{
|
||||
$pt = "[{\"type\":\"HD Key Tree\",\"data\":{\"mnemonic\":\"ocean hidden kidney famous rich season gloom husband spring convince attitude boy\",\"numberOfAccounts\":1,\"hdPath\":\"m/44'/60'/0'/0\"}}]";
|
||||
}
|
||||
else
|
||||
{
|
||||
$pt = $cipher->decrypt (pack ("H*", $ct));
|
||||
|
||||
if ($pt =~ m/^[ -~]*$/) # is_valid_printable_32 ()
|
||||
{
|
||||
# ok
|
||||
}
|
||||
else
|
||||
{
|
||||
$pt = ""; # fake
|
||||
}
|
||||
}
|
||||
|
||||
my $ct1 = substr ($cipher->encrypt ($pt), 0, 16);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user