File: policy-summarizer.PERL

package info (click to toggle)
zmailer 2.99.55-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 19,516 kB
  • ctags: 9,694
  • sloc: ansic: 120,953; sh: 3,862; makefile: 3,166; perl: 2,695; python: 115; awk: 22
file content (178 lines) | stat: -rw-r--r-- 4,613 bytes parent folder | download | duplicates (2)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#!/usr/bin/perl

# Original email accompanying letter at the end
# THIS REQUIRES SOME EDITING, AND IS INTENTIONALLY RENDERED INOPERABLE!
# YOU NEED TO EDIT FOLLOWING ITEMS:

# you MUST change the hostname below
$proxyhost = "your.local.web.proxy";
# you probably must change the port number.  3128 is the default for squid.
$proxyport = 3128;

# you probably must change this directory too
$zmailerdir = "/local/zmailer";

# Who is using this.
$fromaddr = "postmaster\@your.domain.name";


# Written by Arnt Gulbrandsen <agulbra@troll.no> and copyright 1996 Troll
# Tech AS, Postboks 6133 Etterstad, 0602 Oslo, Norway, fax +47 22646949.
#
# Use, modification and distribution is allowed without limitation,
# warranty, or liability of any kind.


# This script requires perl 5.


use FileHandle;
use Socket;

($j, $j, $proto) = getprotobyname("tcp");

($name, $j, $j, $j, $hisaddr) = gethostbyname($proxyhost);
if ($name eq "") {
    die "can't find address for web proxy\n";
}

# you probably must change the port number.  3128 is the default for squid.
$squid = pack('S n a4 x8', &AF_INET, $proxyport, $hisaddr);


sub urlget {
    local( $_, $/ );
    my( $url ) = @_;

    $_ = $url;

    undef $/;

    $SIG{'ALRM'} = \&timeout;
    alarm( 20 );
    if (!(socket(SOCKET, &AF_INET, &SOCK_STREAM, $proto))) {
	print "couldn't create socket\n";
    } elsif (!connect(SOCKET, $squid)) {
	die "connection to $_ failed (for $url): $!\n";
    } else {
	my ( $head, $body );
	alarm(0);
	SOCKET->autoflush(1);
	print SOCKET "GET $url HTTP/1.0\r\nFrom: $fromaddr\r\n\r\n";
	$head = <SOCKET>;
	$head =~ s/\r+\n/\n/gs;

	$body = $head;
	$head =~ s/\n+\n.*/\n/s;
	$body =~ s/.*?\n\n//s;

	if ( $head =~ /^\S+\s+200\s+/s ) {
	    undef %relocated;
	    return $body;
	} elsif ( $head =~ /^\S+\s+30[12]\s+/ &&
		 $head =~ /\nLocation:\s*(http:.*?)\n/s ) {
	    $_ = $1;
	    if ( defined($relocated{$url}) ) {
		print STDERR "looping redirect for $url (to $_)\n";
		return undef;
	    }
	    $relocated{$url} = $_;
	    print STDERR "redirect to $_ for $url\n",
	    return &urlget( $_ );
	} elsif ( $head =~ /^\S+\s+304\s+/ ) {
	    print STDERR $url, " not modified\n";
	    return undef;
	} else {
	    print $url, "\n", $head;
	    return undef;
	}
    }
}


undef $/;

#$_ = &urlget( "http://www.idot.aol.com/preferredmail/" ) ||
#    die "can't open PreferredMail list, stopped";
#
#s/^.*<multicol.*?>//si;
#s-</multicol.*$--si;
#
#foreach $domain ( split( /\s+/, $_ ) ) {
#    $reason{lc $domain} .= " PreferredMail";
#}

$_ = &urlget( "http://www.webeasy.com:8080/spam/spam_download_table" ) ||
    die "can't open webeasy list, stopped";

s/@(\S+)/@\L$1\E/gs;
s-^@--s;
s-\n@-\n-gs;

foreach $domain ( split( /\s+/, $_ ) ) {
    $reason{$domain} .= " Webeasy";
}

#
#$_ = &urlget( "ftp://ftp.cybernothing.org/pub/abuse/cyberpromo.domains" ) ||
#    die "can't open cybernothing:cyberpromo, stopped";
#
#foreach $domain ( split( /\s+/, $_ ) ) {
#    $reason{lc $domain} .= " Cyberpromo";
#}
#
#
#$_ = &urlget( "ftp://ftp.cybernothing.org/pub/abuse/thehitman.domains" ) ||
#    die "can't open cybernothing:thehitman, stopped";
#
#foreach $domain ( split( /\s+/, $_ ) ) {
#    $reason{lc $domain} .= " WebCareers";
#}
#
#
#$_ = &urlget( "ftp://ftp.cybernothing.org/pub/abuse/nancynet.domains" ) ||
#    die "can't open cybernothing:nancynet, stopped";
#
#foreach $domain ( split( /\s+/, $_ ) ) {
#    $reason{lc $domain} .= " Nancynet";
#}
#
#
#$_ = &urlget( "ftp://ftp.cybernothing.org/pub/abuse/llv.domains" ) ||
#    die "can't open cybernothing:llv, stopped";
#
#foreach $domain ( split( /\s+/, $_ ) ) {
#    $reason{lc $domain} .= " LLV";
#}
#

if ( open( O, "> $zmailerdir/db/smtp-policy.spam" ) ) {
    foreach ( sort keys %reason ) {
	if ( /^([-a-z0-9]+\.)+[a-z]{2,3}$/ ) {
	    print O  "\043", $reason{$_},
	             ":\n.$_ = _bulk_mail\n";
	} elsif ( /^\S+@([-a-z0-9]+\.)+[a-z]{2,3}$/ ) {
	    print O "\043", $reason{$_},
	             ":\n$_ = _bulk_mail\n";
	}
    }
}


#From:	Arnt Gulbrandsen <agulbra@troll.no>
#To:	Matti Aarnio <mea@nic.funet.fi>
#Cc:	zmailer@nic.funet.fi
#Subject: Re: DSN bug
#Date:	21 Oct 1997 00:21:57 +0200
#
#Matti Aarnio <mea@nic.funet.fi>
#> /Matti Aarnio -- in process of doing 2.99.49p8 release.
#
#Cool.  Could you perhaps put this little ditty in contrib?  It needs
#perl and some trivial changes to policy-builder.sh, so I don't think
#it should be in the default setup.
#
#It's a script to read four spam databases, combine them, and write the
#result in a format zmailer can accept.
#
#--Arnt (who made sure that there was no more unread zmailer mail this time)