1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-23 16:38:29 +00:00

Merge pull request #1030 from philsmd/master

tests: added support for .hccapx to the tests
This commit is contained in:
Jens Steube 2017-02-07 19:54:58 +01:00 committed by GitHub
commit 4d591550d3

View File

@ -4857,7 +4857,7 @@ sub gen_hash
} }
elsif ($mode == 2500) elsif ($mode == 2500)
{ {
my ($bssid, $stmac, $snonce, $anonce, $eapol, $keyver, $eapol_size); my ($bssid, $stmac, $snonce, $anonce, $eapol, $keyver, $eapol_len, $essid_len);
if (! defined ($additional_param)) if (! defined ($additional_param))
{ {
@ -4886,7 +4886,7 @@ sub gen_hash
$eapol = $additional_param6; $eapol = $additional_param6;
} }
$eapol_size = length ($eapol); $eapol_len = length ($eapol);
# constants # constants
@ -4927,45 +4927,54 @@ sub gen_hash
$mic = substr ($mic, 0, 16); $mic = substr ($mic, 0, 16);
# #
# format the binary output # format the binary output (.hccapx version 3)
# #
$hash_buf = ""; my $HCCAPX_VERSION = 3;
# first the essid (NULL-padded up to the first 36 bytes) # signature
$hash_buf = "HCPX";
# format version
$hash_buf .= pack ("L<", $HCCAPX_VERSION);
# authenticated
$hash_buf .= pack ("C", 1);
# essid length
$essid_len = length ($salt_buf);
$hash_buf .= pack ("C", $essid_len);
# essid (NULL-padded up to the first 32 bytes)
$hash_buf .= $salt_buf; $hash_buf .= $salt_buf;
$hash_buf .= "\x00" x (36 - length ($salt_buf)); $hash_buf .= "\x00" x (32 - $essid_len);
# the 2 MAC addresses
$hash_buf .= $bssid;
$hash_buf .= $stmac;
# nonces
$hash_buf .= $snonce;
$hash_buf .= $anonce;
# eapol
$hash_buf .= $eapol;
$hash_buf .= "\x00" x (256 - $eapol_size);
# eapol size
$hash_buf .= pack ("L*", $eapol_size);
# key version # key version
$hash_buf .= pack ("C", $keyver);
$hash_buf .= pack ("L*", $keyver); # key mic
# and finally: the key mic
$hash_buf .= $mic; $hash_buf .= $mic;
# base64 encode the output # access point MAC
$hash_buf .= $bssid;
# access point nonce
$hash_buf .= $snonce;
# client MAC
$hash_buf .= $stmac;
# client nonce
$hash_buf .= $anonce;
# eapol length
$hash_buf .= pack ("S<", $eapol_len);
# eapol
$hash_buf .= $eapol;
$hash_buf .= "\x00" x (256 - $eapol_len);
# base64 encode the output
$tmp_hash = encode_base64 ($hash_buf, ''); $tmp_hash = encode_base64 ($hash_buf, '');
} }
elsif ($mode == 2600) elsif ($mode == 2600)