ok. hier ist er:
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
#!/usr/local/bin/perl
use LWP::UserAgent;
print "\nWEBWORD gestartet!\n\n";
print "\nBitte Adresse angeben: (http://beispiel.de) ";
chop($input_address = <STDIN>);
print "\nName der Wordlist: ";
$name = <STDIN>;
$name2 = "$name.txt";
$a1 = "$input_address";
$agent = new LWP::UserAgent;
$request = HTTP::Request->new('GET',$a1);
$result = $agent->request($request);
$a1 =~ s/.*\///;
$a1 = "temp1.txt";
open(lookME, ">", "temp1.txt") || die print "Datei konnte nicht erstellt werden!\n";
print lookME $result->content();
close(lookME);
open(IP,"<","temp1.txt") || die print "Datei konnte nicht geoeffnet werden!\n";
@IN = <IP>;
close(IP);
unlink "temp1.txt" || die print "Datei konnte nicht geloescht werden!\n";
foreach $string1 (@IN)
{
$string1 =~ s/<.+?>//g;
$string1 =~ s/{.+?}//g;
}
foreach $word (@IN) {
$word =~ tr/ /\n/;
push(@second,"$word");
}
foreach $string (@second)
{
$string =~ tr/,;.:_[¨!]{}$£§¬°1+|"@*#ç¼%½&¬¦(¢)]=}?´'^`~<>-//d;
$string =~ s!/!!g;
$string =~ s!\\!!g;
$string =~ s! !!g;
$string =~ s! !!g;
}
open(datei, ">>", "1.txt") || die print "Datei konnte nicht erstellt werden!\n";
print datei @second;
close(datei);
open(DATA,"<","1.txt");
open(OUT,">","$name2");
foreach $line (<DATA>)
{
if ($line =~ m/[a-z]|[0-9]/i)
{
print OUT $line;
}
}$string=~ tr/<html>/s/d;
close(DATA);
close(OUT);
unlink("1.txt");
mit use strict; und use warnings; kommen einfach ne menge fehlermeldungen die mir nichts sagn,