You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hashcat/tools/test_modules/m25500.pm

113 lines
2.3 KiB

#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;
use Crypt::PBKDF2;
use Crypt::AuthEnc::GCM;
use MIME::Base64 qw (decode_base64 encode_base64);
sub module_constraints { [[0, 256], [32, 32], [-1, -1], [-1, -1], [-1, -1]] }
sub module_generate_hash
{
my $word = shift;
my $salt = shift;
my $iv = shift // random_hex_string (24);
my $ct = shift;
my $kdf = Crypt::PBKDF2->new
(
hasher => Crypt::PBKDF2->hasher_from_algorithm ('HMACSHA2', 256),
iterations => 4096,
output_len => 32
);
my $salt_bin = pack ("H*", $salt);
my $key = $kdf->PBKDF2 ($salt_bin, $word);
my $iv_bin = pack ("H*", $iv);
my $pt;
if (defined $ct)
{
my $ct_bin = pack ("H*", $ct);
my $data_bin = substr ($ct_bin, 0, -16);
my $tag_bin = substr ($ct_bin, -16);
my $aes = Crypt::AuthEnc::GCM->new ("AES", $key, $iv_bin);
$pt = $aes->decrypt_add ($data_bin);
my $result_tag = $aes->decrypt_done ($tag_bin);
if ($result_tag == 1)
{
## correct password
}
else
{
$pt = "\xff" x 56;
}
}
else
{
$pt = "\xff" x 56;
}
my $aes = Crypt::AuthEnc::GCM->new ("AES", $key, $iv_bin);
my $ct_bin = $aes->encrypt_add ($pt);
my $tag_bin = $aes->encrypt_done ();
my $hash = sprintf ('$stellar$%s$%s$%s', encode_base64 ($salt_bin, ""), encode_base64 ($iv_bin, ""), encode_base64 ($ct_bin . $tag_bin, ""));
return $hash;
}
sub module_verify_hash
{
my $line = shift;
my $idx = index ($line, ':');
return unless $idx >= 0;
my $hash = substr ($line, 0, $idx);
my $word = substr ($line, $idx + 1);
return unless substr ($hash, 0, 9) eq '$stellar$';
my (undef, $signature, $salt, $iv, $ct) = split '\$', $hash;
return unless defined $signature;
return unless defined $salt;
return unless defined $iv;
return unless defined $ct;
my $salt_bin = decode_base64 ($salt);
my $iv_bin = decode_base64 ($iv);
my $ct_bin = decode_base64 ($ct);
return unless length $salt_bin == 16;
return unless length $iv_bin == 12;
return unless length $ct_bin == 72;
my $word_packed = pack_if_HEX_notation ($word);
my $new_hash = module_generate_hash ($word_packed, unpack ("H*", $salt_bin), unpack ("H*", $iv_bin), unpack ("H*", $ct_bin));
return ($new_hash, $word);
}
1;