File: fail2ban

package info (click to toggle)
logwatch 7.14-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,572 kB
  • sloc: perl: 8,290; sh: 354; makefile: 38
file content (326 lines) | stat: -rw-r--r-- 13,645 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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326

########################################################
# Please file all bug reports, patches, and feature
# requests under:
#      https://sourceforge.net/p/logwatch/_list/tickets
# Help requests and discusion can be filed under:
#      https://sourceforge.net/p/logwatch/discussion/
########################################################

########################################################
## Copyright (c) 2008  Yaroslav Halchenko
## Covered under the included MIT/X-Consortium License:
##    http://www.opensource.org/licenses/mit-license.php
## All modifications and contributions by other persons to
## this script are assumed to have been donated to the
## Logwatch project and thus assume the above copyright
## and licensing terms.  If you want to make contributions
## under your own copyright or a different license this
## must be explicitly stated in the contribution an the
## Logwatch project reserves the right to not accept such
## contributions.  If you have made significant
## contributions to this script and want to claim
## copyright please contact logwatch-devel@lists.sourceforge.net.
#########################################################

use strict;
use Logwatch ':all';

my $Debug = $ENV{'LOGWATCH_DEBUG'} || 0;
my $Detail = $ENV{'LOGWATCH_DETAIL_LEVEL'} || 0;
my $IgnoreHost = $ENV{'sshd_ignore_host'} || "";
my $IgnoreFlushing = $ENV{'fail2ban_ignore_flushing'} || "";
my $IgnoreLatency = $ENV{'fail2ban_ignore_latency'} || "^\$";
my $ErrLen = $ENV{'fail2ban_error_length'} || 80;
my $DebugCounter = 0;
my $ReInitializations = 0;
my @IptablesErrors = ();
my @ActionErrors = ();
my $NotValidIP = 0;             # reported invalid IPs number
my %ErrorList = ();
my %WarningList = ();
my %InfoList = ();
my %NoticeList = ();
my %OtherList = ();
my %Flushing = ();              # keep track of which services being flushed
my %LatencyIssues = ();

my %ServicesBans = ();
my %ServicesFound = ();
my %ServicesIgnored = ();

# IP lookups disabled by default.  Set in fail2ban services
# configuration file to enable.
DoLookup( $ENV{'fail2ban_ip_lookup'} );

#Init String Containers
my (
$Action,        $Host,      $Message,
$NumFailures,   $Service,   $Increase
);
if ( $Debug >= 5 ) {
    print STDERR "\n\nDEBUG: Inside Fail2Ban Filter \n\n";
    $DebugCounter = 1;
}

while (defined(my $ThisLine = <STDIN>)) {
    if ( $Debug >= 5 ) {
        print STDERR "DEBUG($DebugCounter): $ThisLine";
        $DebugCounter++;
    }
    chomp($ThisLine);
    if ( ($ThisLine =~ /..,... DEBUG: /) or
         ($ThisLine =~ /..,... \S*\s*: DEBUG /) or # syntax of 0.7.? fail2ban
         ($ThisLine =~ /..,... INFO: (Fail2Ban v.* is running|Exiting|Enabled sections:)/) or
         ($ThisLine =~ /INFO\s+Log rotation detected for/) or
         ($ThisLine =~ /INFO\s+Jail.+(?:stopped|started|uses )/) or
         ($ThisLine =~ /INFO\s+Changed logging target to/) or
         ($ThisLine =~ /INFO\s+Creating new jail/) or
         ($ThisLine =~ /INFO\s+(Set |Socket|Gamin|Created|Added|Using|Connected to |rollover performed)/) or # syntax of 0.7.? fail2ban
         ($ThisLine =~ /..,... WARNING: Verbose level is /) or
         ($ThisLine =~ /..,... WARNING: Restoring firewall rules/) or
         ($ThisLine =~ /WARNING Determined IP using DNS Lookup/) or
         ($ThisLine =~ /INFO\s+Initiated '.*' backend/) or
         ($ThisLine =~ /INFO\s+(Added logfile = .*|Set maxRetry = \d+|Set findtime = \d+|Set banTime = \d+)/) or
         ($ThisLine =~ /Unable to find a corresponding IP address for .*: \[Errno -2\] Name or service not known/)
       )
    {
        if ( $Debug >= 6 ) {
            print STDERR "DEBUG($DebugCounter): line ignored\n";
        }
    } elsif ( ($Service,$Action,$Host) = ($ThisLine =~ m/NOTICE:?\s+\[?(.*?)[]:]?\s(Restore Ban)[^\.]* (\S+)/)) {
        $ServicesBans{$Service}{$Host}{'ReBan'}++;
        $ServicesBans{$Service}{"(all)"}{'ReBan'}++;
    } elsif ( ($Service,$Increase,$Action,$Host) = ($ThisLine =~ m/(?:WARNING|NOTICE):?\s+\[?(.*?)[]:]?\s(Increase\s)?(Ban|Unban)[^\.]* (\S+)/)) {
        if ( $Increase ) {
            $Service .= " increase"
        }
        if ( $Debug >= 6 ) {
            print STDERR "DEBUG($DebugCounter): Found $Action for $Service from $Host\n";
        }
        if (exists $Flushing{$Service}) {
            if ($Action =~ /Unban/) {
                $ServicesBans{$Service}{$Host}{'FlushUnban'}++;
                $ServicesBans{$Service}{"(all)"}{'FlushUnban'}++;
            } elsif ( ! $IgnoreFlushing ) {
                print STDERR "ERROR: Lost track of flushing services\n";
            }
        } else {
            $ServicesBans{$Service}{$Host}{$Action}++;
            $ServicesBans{$Service}{"(all)"}{$Action}++;
        }
    } elsif ( ($Service,$Host,$NumFailures) = ($ThisLine =~ m/INFO: (\S+): (.+) has (\d+) login failure\(s\). Banned./)) {
        if ($Debug >= 4) {
            print STDERR "DEBUG: Found host $Host trying to access $Service - failed $NumFailures times\n";
        }
        push @{$ServicesBans{$Service}{$Host}{'Failures'}}, $NumFailures;
    } elsif ( ($Service,$Host) = ($ThisLine =~ m/ ERROR:\s(.*):\s(\S+)\salready in ban list/)) {
        $ServicesBans{$Service}{$Host}{'AlreadyInTheList'}++;
    } elsif ( ($Service,$Host) = ($ThisLine =~ m/(?:INFO|WARNING|NOTICE)\s*\[(.*)\]\s*(\S+)\s*already banned/)) {
        $ServicesBans{$Service}{$Host}{'AlreadyInTheList'}++;
    } elsif ( ($Service,$Message) = ($ThisLine =~ m/WARNING\s*\[(.*)\].* (latency problem|timing issue)/)) {
        next if $Service =~ /$IgnoreLatency/;
        $LatencyIssues{$Service}++ if $Message eq "latency problem";
    } elsif ( ($Service,$Host) = ($ThisLine =~ m/ WARNING:\s(.*):\sReBan (\S+)/)) {
        $ServicesBans{$Service}{$Host}{'ReBan'}++;
    } elsif ($ThisLine =~ / ERROR:?\s*(Execution of command )?\'?iptables/) {
        push @IptablesErrors, "$ThisLine\n";
    } elsif ($ThisLine =~ /ERROR.*returned \d+$/) {
        push @ActionErrors, "$ThisLine\n";
    } elsif (($ThisLine =~ /..,... WARNING: \#\S+ reinitialization of firewalls/) or
             ($ThisLine =~ / ERROR\s*Invariant check failed. Trying to restore a sane environment/)) {
        $ReInitializations++;
    } elsif ($ThisLine =~ /..,... WARNING:  is not a valid IP address/) {
        # just ignore - this will be fixed within fail2ban and is harmless warning
    } elsif ( ($Service,$Host) = ($ThisLine =~ /INFO\s+\[(.*)\] Found (\S+)/)) {
        $ServicesFound{$Service}{$Host}++;
    } elsif ( ($Service,$Host) = ($ThisLine =~ /INFO\s+\[(.*)\] Ignore (\S+)/)) {
        $ServicesIgnored{$Service}{$Host}++;
    # Generic messages
    } elsif ( ($Message) = ($ThisLine =~ / ERROR (.*)$/)) {
        # Fail2ban can dump huge error messages in its logs
        if ($ErrLen > 3 && length($Message) > $ErrLen) {
            $ErrorList{substr($Message,0,$ErrLen-3).'...'}++;
        } else {
            $ErrorList{$Message}++;
        }
    } elsif ( ($Message) = ($ThisLine =~ / WARNING (.*)$/)) {
        $WarningList{$Message}++;
    } elsif ( ($Message) = ($ThisLine =~ / INFO (.*)$/)) {
        $InfoList{$Message}++;
        if ( ($Service) = ($Message =~ /Jail \'(.*)\' stopped/)) {
            delete $Flushing{$Service};
        }
        if ( ($Service) = ($Message =~ /Stopping all jails|Exiting Fail2ban/)) {
            %Flushing = ();
        }
    } elsif ( ($Message) = ($ThisLine =~ / NOTICE (.*)$/)) {
        $NoticeList{$Message}++;
        if ( ($Service) = ($Message =~ /\[(.*)\] Flush ticket/)) {
            $Flushing{$Service} = 1;
        }
    } else {
        # Report any unmatched entries...
        $OtherList{$ThisLine}++;
    }
}

###########################################################


if (keys %ServicesBans and ($Detail > 0)) {
    printf("\nBanned services with Fail2Ban:                        Bans:Unbans  ReBans:Flush\n");
    foreach my $service (sort {$a cmp $b} keys %ServicesBans) {
        # Perl handles autoincrement of the uninitialized key values,
        # but it can issue a warning when used in a print statement.
        # So we check for existence before printing its value.
        printf("   %-50s [%3d:%-3d]      [%3d:%-3d]\n", "$service:",
               (exists $ServicesBans{$service}{'(all)'}{'Ban'}) ?
                  $ServicesBans{$service}{'(all)'}{'Ban'} : 0,
               (exists $ServicesBans{$service}{'(all)'}{'Unban'}) ?
                  $ServicesBans{$service}{'(all)'}{'Unban'} : 0,
               (exists $ServicesBans{$service}{'(all)'}{'ReBan'}) ?
                  $ServicesBans{$service}{'(all)'}{'ReBan'} : 0,
               (exists $ServicesBans{$service}{'(all)'}{'FlushUnban'}) ?
                  $ServicesBans{$service}{'(all)'}{'FlushUnban'} : 0);
        delete $ServicesBans{$service}{'(all)'};

        my $totalSort = TotalCountOrder(%{$ServicesBans{$service}}, \&SortIP);
        if ($Detail >= 5) {
            foreach my $ip (sort $totalSort keys %{$ServicesBans{$service}}) {
                my @name = split(/ /, LookupIP($ip));
                # As explained above, we check for existence of hashes
                # that are autoincremented.
                printf("      %-48s %3d:%-3d        %3d:%-3d\n",
                    $name[0],
                    (exists $ServicesBans{$service}{$ip}{'Ban'}) ?
                        $ServicesBans{$service}{$ip}{'Ban'} : 0,
                    (exists $ServicesBans{$service}{$ip}{'Unban'}) ?
                        $ServicesBans{$service}{$ip}{'Unban'} : 0,
                    (exists $ServicesBans{$service}{$ip}{'ReBan'}) ?
                        $ServicesBans{$service}{$ip}{'ReBan'} : 0,
                    (exists $ServicesBans{$service}{$ip}{'FlushUnban'}) ?
                        $ServicesBans{$service}{$ip}{'FlushUnban'} : 0);
                if (scalar @name > 1) {
                   printf("          %s\n", $name[1]);
                   }
                if (($Detail >= 10) and
                    (exists $ServicesBans{$service}{$ip}{'Failures'}) and
                    ($ServicesBans{$service}{$ip}{'Failures'}>0)) {
                    print "      Failed ";
                    foreach my $fails (@{$ServicesBans{$service}{$ip}{'Failures'}}) {
                        print " $fails";
                    }
                    print " times";
}
                if (($Detail >= 10) and
                    (exists $ServicesBans{$service}{$ip}{'AlreadyInTheList'}) and
                    ($ServicesBans{$service}{$ip}{'AlreadyInTheList'}>0)) {
                    printf("         (%d Duplicate Ban attempts)\n",
                        $ServicesBans{$service}{$ip}{'AlreadyInTheList'}) ;
                }
            }
        }
    }
}

if (keys %ServicesFound and $Detail>5) {
    printf("\nFail2Ban hosts found:\n");
    foreach my $service (sort {$a cmp $b} keys %ServicesFound) {
        print("    $service:\n");
        foreach my $ip (sort {$a cmp $b} keys %{$ServicesFound{$service}}) {
            my @name = split(/ /, LookupIP($ip));
            printf("       %-15s (%3d Times)\n", "$ip",
                   $ServicesFound{$service}{$ip});
            if (scalar @name > 1) {
               printf("          %s\n", $name[1]);
               }
        }
    }
}

if (keys %ServicesIgnored and $Detail>5) {
    printf("\nFail2Ban hosts ignored:\n");
    foreach my $service (sort {$a cmp $b} keys %ServicesIgnored) {
        print("    $service:\n");
        foreach my $ip (sort {$a cmp $b} keys %{$ServicesIgnored{$service}}) {
            my @name = split(/ /, LookupIP($ip));
            printf("       %-15s (%3d Times)\n", "$ip",
                   $ServicesIgnored{$service}{$ip});
            if (scalar @name > 1) {
               printf("          %s\n", $name[1]);
               }
        }
    }
}

if (keys(%ErrorList)) {
    print "\n** ERRORS **\n";
    foreach my $line (sort {$a cmp $b} keys %ErrorList) {
        print "   $line: $ErrorList{$line} Time(s)\n";
    }
}

if (keys(%WarningList)) {
    print "\n** WARNINGS **\n";
    foreach my $line (sort {$a cmp $b} keys %WarningList) {
        print "   $line: $WarningList{$line} Time(s)\n";
    }
}

if (keys %LatencyIssues) {
    printf("\nJails with latency issues:\n");
    foreach my $service (sort {$a cmp $b} keys %LatencyIssues) {
        printf("    $service: %d Times\n", $LatencyIssues{$service});
    }
}

if (keys(%InfoList) && $Detail>5) {
    print "\nInformational Messages:\n";
    foreach my $line (sort {$a cmp $b} keys %InfoList) {
        print "   $line: $InfoList{$line} Time(s)\n";
    }
}

if (keys(%NoticeList) && $Detail>7) {
    print "\nNotices:\n";
    foreach my $line (sort {$a cmp $b} keys %NoticeList) {
        print "   $line: $NoticeList{$line} Time(s)\n";
    }
}

if ($Detail>0) {
    if ($#IptablesErrors > 0) {
        printf("\n%d faulty iptables invocation(s)", $#IptablesErrors);
        if ($Detail > 5) {
            print ":\n";
            print @IptablesErrors ;
        }
    }
    if ($#ActionErrors > 0) {
        printf("\n%d error(s) returned from actions", $#ActionErrors);
        if ($Detail > 5) {
            print ":\n";
            print @ActionErrors ;
        }
    }
    if ($ReInitializations > 0) {
        printf("\n%d fail2ban rules reinitialization(s)", $ReInitializations);
    }
}

if (keys(%OtherList)) {
    print "\n**Unmatched Entries**\n";
    foreach my $line (sort {$a cmp $b} keys %OtherList) {
        print "   $line: $OtherList{$line} Time(s)\n";
    }
}

exit(0);

# vi: shiftwidth=3 tabstop=3 syntax=perl et
# Local Variables:
# mode: perl
# perl-indent-level: 3
# indent-tabs-mode: nil
# End: