mirror of
https://github.com/hashcat/hashcat
synced 2024-11-02 20:39:22 +01:00
tests: fixed -m 13600 = WinZip verification
This commit is contained in:
parent
1dd43686cc
commit
0b16a608b5
@ -30,6 +30,7 @@
|
||||
##
|
||||
|
||||
- Backend: Changed the maximum number of compute devices from 64 to 128
|
||||
- Tests: Improved tests for hash-mode 13600 (WinZip)
|
||||
|
||||
* changes v5.1.0 -> v6.0.0
|
||||
|
||||
|
@ -94,7 +94,7 @@ sub module_generate_hash
|
||||
|
||||
my $auth = hmac_hex ($data, $key_bin, \&sha1, 64);
|
||||
|
||||
my $hash = sprintf ('$zip2$*%u*%u*%u*%s*%s*%x*%s*%s*$/zip2$', $type, $mode, $magic, $salt, $verify_bytes, $compress_length, $data, substr ($auth, 0, 20));
|
||||
my $hash = sprintf ('$zip2$*%u*%u*%u*%s*%s*%s*%s*%s*$/zip2$', $type, $mode, $magic, $salt, $verify_bytes, $compress_length, unpack ("H*", $data), substr ($auth, 0, 20));
|
||||
|
||||
return $hash;
|
||||
}
|
||||
@ -136,6 +136,8 @@ sub module_verify_hash
|
||||
return unless defined $salt;
|
||||
return unless defined $word;
|
||||
|
||||
$param6 = pack ("H*", $param6);
|
||||
|
||||
$word = pack_if_HEX_notation ($word);
|
||||
|
||||
my $new_hash = module_generate_hash ($word, $salt, $param, $param2, $param3, $param4, $param5, $param6);
|
||||
|
Loading…
Reference in New Issue
Block a user