comparison maltfilter @ 114:200aafa2e88d

Update copyrights.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 15 Nov 2012 09:03:04 +0200
parents ee4a55fb7d23
children 91a5194de522
comparison
equal deleted inserted replaced
113:ece1efdb62e7 114:200aafa2e88d
1 #!/usr/bin/perl -w 1 #!/usr/bin/perl -w
2 ############################################################################# 2 #############################################################################
3 # 3 #
4 # Malicious Attack Livid Termination Filter daemon (maltfilter) 4 # Malicious Attack Livid Termination Filter daemon (maltfilter)
5 # Programmed by Matti 'ccr' Hämäläinen <ccr@tnsp.org> 5 # Programmed by Matti 'ccr' Hämäläinen <ccr@tnsp.org>
6 # (C) Copyright 2009-2010 Tecnic Software productions (TNSP) 6 # (C) Copyright 2009-2012 Tecnic Software productions (TNSP)
7 # 7 #
8 ############################################################################# 8 #############################################################################
9 use strict; 9 use strict;
10 use Date::Parse; 10 use Date::Parse;
11 use Net::IP; 11 use Net::IP;
12 use Net::DNS; 12 use Net::DNS;
13 use LWP::UserAgent; 13 use LWP::UserAgent;
14 use IO::Seekable; 14 use IO::Seekable;
15 15
16 my $progversion = "0.20.4"; 16 my $progversion = "0.20.5";
17 my $progbanner = 17 my $progbanner =
18 "Malicious Attack Livid Termination Filter daemon (maltfilter) v$progversion\n". 18 "Malicious Attack Livid Termination Filter daemon (maltfilter) v$progversion\n".
19 "Programmed by Matti 'ccr' Hamalainen <ccr\@tnsp.org>\n". 19 "Programmed by Matti 'ccr' Hamalainen <ccr\@tnsp.org>\n".
20 "(C) Copyright 2009-2010 Tecnic Software productions (TNSP)\n"; 20 "(C) Copyright 2009-2012 Tecnic Software productions (TNSP)\n";
21 21
22 22
23 ############################################################################# 23 #############################################################################
24 ### Default settings and configuration 24 ### Default settings and configuration
25 ############################################################################# 25 #############################################################################