-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathEmail Extractor.pl
More file actions
77 lines (58 loc) · 1.53 KB
/
Email Extractor.pl
File metadata and controls
77 lines (58 loc) · 1.53 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/perl
###########################
#
# +++++++++[+] ScRiPt [+]+++++++++
#
# Nepokatneza [ Email Extractor ]
#
# +++++++++[+] CoDeR [+]++++++++++
#
# Perforin
#
# ++++++++[+] WeBsItEs [+]++++++++
#
# Dark-Codez.org | perforins-script-labor.dl.am
#
############################
print <<EOF;
_ _ _ _
| \\ | | ___ _ __ ___ | | ____ _| |_ _ __ ___ ______ _
| \\| |/ _ \\ '_ \\ / _ \\| |/ / _` | __| '_ \\ / _ \\_ / _` |
| |\\ | __/ |_) | (_) | < (_| | |_| | | | __// / (_| |
|_| \\_|\\___| .__/ \\___/|_|\\_\\__,_|\\__|_| |_|\\___/___\\__,_|
|_|
coded by Perforin
EOF
if (@ARGV < 1) {
print qq {
++++++++++[+] SyNtAx [+]++++++++++
Um eine Datei nach Mail-Adressen
zu durchsuchen muss man folgendes
eingeben:
nepokatneza.exe file.txt
++++++++++[+] SyNtAx [+]++++++++++
};
exit;
}
$pfad = $ARGV[0];
open(FILE,"<$pfad") || die print "Datei konnte nicht geoeffnet werden!\n";
open(SORTED,">sorted.txt") || die print "Datei konnte nicht ertsellt werden!\n";
print " --> $pfad wird durchsucht!"."\n";
foreach $word (<FILE>) {
$word =~ tr/ /\n/;
print SORTED $word;
}
close(FILE);
close(SORTED);
open(SORTED,"<sorted.txt") || die print "Datei konnte nicht eingelesen werden!\n";
@SORTED = <SORTED>;
close(SORTED);
unlink "sorted.txt" || die print "Datei konnte nicht geloescht werden!\n";
open(MAILS,">>mails.txt");
foreach $line (@SORTED) {
if ($line =~ m/(@)/) {
print MAILS "$line\n";
}
}
close(MAILS);
print " --> Mails wurden kopiert!"."\n";