forked from hashcat/hashcat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm00125.pm
50 lines (32 loc) · 857 Bytes
/
m00125.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env perl
##
## Author......: See docs/credits.txt
## License.....: MIT
##
use strict;
use warnings;
use Digest::SHA qw (sha1_hex);
sub module_constraints { [[0, 253], [8, 8], [0, 53], [8, 8], [8, 53]] }
sub module_generate_hash
{
my $word = shift;
my $salt = shift;
my $signature = "01";
my $salt_bin = pack ("H*", $salt . $signature);
my $digest = sha1_hex ($salt_bin . $word);
my $hash = sprintf ("%s%s%s", $salt, $signature, $digest);
return $hash;
}
sub module_verify_hash
{
my $line = shift;
my ($hash, $word) = split (':', $line);
my $salt = substr ($hash, 0, 8);
return unless defined $hash;
return unless defined $salt;
return unless defined $word;
my $word_packed = pack_if_HEX_notation ($word);
my $new_hash = module_generate_hash ($word_packed, $salt);
return ($new_hash, $word);
}
1;