-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmass_email_decrypt.pl
More file actions
60 lines (50 loc) · 1.83 KB
/
mass_email_decrypt.pl
File metadata and controls
60 lines (50 loc) · 1.83 KB
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
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/perl
use strict;
use warnings;
use LWP::UserAgent;
system(($^O eq 'MSWin32') ? 'cls' : 'clear');
system("title [Email - Hash_Md5 Decrypter]");
print q{
▒▒▒▒▒▒▒▓
▒▒▒▒▒▒▒▓▓▓
▒▓▓▓▓▓▓░░░▓
▒▓░░░░▓░░░░▓
▓░░░░░░▓░▓░▓
▓░░░░░░▓░░░▓
▓░░▓░░░▓▓▓▓
▒▓░░░░▓▒▒▒▒▓
▒▒▓▓▓▓▒▒▒▒▒▓
▒▒▒▒▒▒▒▒▓▓▓▓
▒▒▒▒▒▓▓▓▒▒▒▒▓
▒▒▒▒▓▒▒▒▒▒▒▒▒▓
▒▒▒▓▒▒▒▒▒▒▒▒▒▓
▒▒▓▒▒▒▒▒▒▒▒▒▒▒▓
▒▓▒▓▒▒▒▒▒▒▒▒▒▓
▒▓▒▓▓▓▓▓▓▓▓▓▓
▒▓▒▒▒▒▒▒▒▓
▒▒▓▒▒▒▒▒▓
[MASS EMAIL | HASH_MD5 DECRYPTER]
[*** Brazilians Hackers Team ***]
};
print "[Insira sua lista]: ";
chomp(my $file=<STDIN>);
open (my $decrypter,'<',$file) || die "\n [Lista nao selecionada]";
my @file = <$decrypter>;
foreach my $id(@file) {
my $lwp = LWP::UserAgent->new;
$lwp->agent('Mozilla 5.0');
$lwp->timeout(5);
$lwp->max_size('1_000_240');
my ($e,$hash) = split/[|]/,$id;
$hash =~/[0-9a-fA-F]{32}/ or warn "Não é uma hash md5\n";
my $url = "http://md5.darkbyte.ru/api.php?q=".$hash;
my $req = $lwp->get($url);
my $dmd5 = $req->decoded_content;
if ($req->is_success){
print "\n[Email] ".$e."| [Hash Decriptada] => ".$dmd5."\n";
}
open(my $fh, '>>', 'decrypter.txt');
print $fh "$e|$dmd5\n";
close $fh;
}
close $decrypter;