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 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
|
########################################################
# Please file all bug reports, patches, and feature
# requests under:
# https://sourceforge.net/p/logwatch/_list/tickets
# and copy:
# Laurent DUFOUR <laurent.dufour@havas.com>,<dufour_l@hotmail.com>
# Help requests and discusion can be filed under:
# https://sourceforge.net/p/logwatch/discussion/
########################################################
########################################################
# This was written and is maintained by:
# Laurent DUFOUR <laurent.dufour@havas.com>,<dufour_l@hotmail.com>
# based on the work of
# Kirk Bauer <kirk@kaybee.org>
########################################################
########################################################
## Copyright (c) 2008 Laurent DUFOUR
## 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 Logwatch ':all';
use strict;
my $Debug = ValueOrDefault($ENV{'LOGWATCH_DEBUG'}, 0);
my $Detail = ValueOrDefault($ENV{'LOGWATCH_DETAIL_LEVEL'}, 30);
my $DebugCounter = 0;
#Init Strings
my (
$Temp, $config, $dst_ip,
$interface,
);
#Init Hashes
my (
%BadLogins, %IllegalUsers, %NTPFailed,
%NTPUpdated, %ReloadRequested, %Restarted,
%SYST, %Started, %SysCfgSaved,
%SysCfgSavedCompleted, %SyslogFacility, %SyslogHost,
%Users, %UsersOut,
);
#Init Arrays
my @OtherList = ();
# Avoid "Use of uninitialized value" warning messages.
sub ValueOrDefault {
my ($value, $default) = @_;
return ($value ? $value : $default);
}
if ( $Debug >= 5 ) {
print STDERR "\n\nDEBUG: Inside EXTREME NETWORKS Filter \n\n";
$DebugCounter = 1;
}
my ($month,$day,$time,$host_ip,$host,$conn,$msg,$message);
while (defined(my $ThisLine = <STDIN>)) {
if ( $Debug >= 30 ) {
print STDERR "DEBUG($DebugCounter): $ThisLine";
$DebugCounter++;
}
($month,$day,$time,$host,$msg)=split(/ +/,$ThisLine,6);
if ( ($ThisLine =~ /traffic/ ) or
($ThisLine =~ /Copyright/ ) or
($ThisLine =~ /removed due to simultaneous rekey/ ) or
($ThisLine =~ /Responded to the first peer message/ ) or
($ThisLine =~ /NBR change/ ) or
($ThisLine =~ /accept udp/ ) or
($ThisLine =~ /accept tcp/ ) or
($ThisLine =~ /accept icmp/ ) or
($ThisLine =~ /accept ip/ ) or
($ThisLine =~ /denied udp/ ) or
($ThisLine =~ /denied tcp/ ) or
($ThisLine =~ /denied icmp/ ) or
($ThisLine =~ /denied ip/ )
) {
# don't care about this, will code this later
}
elsif ( ($config,$msg) = ($ThisLine =~ /SYST: Save to the (\S+) configuration completed/) ) {
$SysCfgSavedCompleted{$host}{$config}++;
}
elsif ( ($dst_ip,$msg) = ($ThisLine =~ /SYST: (\d+\.\d+\.\d+\.\d+) admin: save (.*)/) ) {
$SysCfgSaved{$host}{LookupIP($dst_ip)}++;
}
elsif ( ($ThisLine =~ /Compiled/) ) {
$Started{$host}++;
}
elsif ( ($ThisLine =~ /Syslog host domain name has been changed/) ) {
$SyslogHost{$host}++;
}
elsif ( ($ThisLine =~ /Syslog facility has been changed/) ) {
$SyslogFacility{$host}++;
}
elsif ( ($ThisLine =~ /Syslog security facility has been changed/) ) {
$SyslogFacility{$host}++;
}
elsif ( ($ThisLine =~ /The system clock has been updated through NTP./) ) {
$NTPUpdated{$host}++;
}
elsif ( ($ThisLine =~ /failed to get clock through NTP/) ) {
$NTPFailed{$host}++;
}
elsif ( ($message) = ($ThisLine =~ /RELOAD: (.*)/) ) {
$ReloadRequested{$host}{$message}++;
}
elsif ( ($message) = ($ThisLine =~ /RESTART: (.*)/) ) {
$Restarted{$host}{$message}++;
}
elsif ( ($interface) = ($ThisLine =~ /(\S+) logged in through (\S+) \((\d+\.\d+\.\d+\.\d+)\)/) ) {
if ($Debug >= 5) {
print STDERR "DEBUG: Found -$1 logged in from $3 using $2\n";
}
if ($Detail >= 20) {
$Users{$host}{$2}{$3}{$1}++;
} else {
$Users{$host}{$2}{$3}{"(all)"}++;
}
}
elsif ( ($interface) = ($ThisLine =~ /SYST: User (\S+) logged out from (\S+) \((\d+\.\d+\.\d+\.\d+)\)/) ) {
if ($Debug >= 5) {
print STDERR "DEBUG: Found -$1 logged out from $3 using $2\n";
}
if ($Detail >= 20) {
$UsersOut{$host}{$2}{$3}{$1}++;
} else {
$UsersOut{$host}{$2}{$3}{"(all)"}++;
}
}
elsif ( $ThisLine =~ m/Admin user (\S+) login attempt for (\S+) management \(port (\d+)\) from (.+):(.+). failed. (.*)/ ) {
if ( $Debug >= 5 ) {
print STDERR "DEBUG: Found -Failed login- line\n";
}
my $name = LookupIP($4);
$BadLogins{$host}{"$1/$2 from $name"}++;
}
elsif ( $ThisLine =~ m/SSH client at (.+) has attempted to make an SCS connection to interface untrust with IP (.+) but failed (.*)/ ) {
my $name = LookupIP($2);
$Temp = "SSH from $name";
$BadLogins{$host}{$Temp}++;
$IllegalUsers{$host}{$Temp}++;
}
elsif ( ($message) = ($ThisLine =~ /SYST: (.*)/) ) {
$SYST{$host}{$message}++;
}
else {
# Report any unmatched entries...
push @OtherList,$ThisLine;
}
}
if (keys %Started) {
print "\nDevice started :\n";
foreach my $ThisOne (keys %Started) {
print " " . $ThisOne . ":\n";
foreach my $ThatOne (keys %{$Started{$ThisOne}}) {
print "\t Started" .$ThatOne . "\t: " . $Started{$ThisOne}{$ThatOne} . "{ Time(s)\n";
}
}
}
if (keys %SYST) {
print "\nDevice where system command where used :\n";
foreach my $ThisOne (keys %SYST) {
print " " . $ThisOne . ":\n";
foreach my $ThatOne (keys %{$SYST{$ThisOne}}) {
print "\t " .$ThatOne . "\t: " . $SYST{$ThisOne}{$ThatOne} . " Time(s)\n";
}
}
}
if (keys %NTPUpdated) {
print "\nDevice where The system clock has been updated through NTP :\n";
foreach my $ThisOne (keys %NTPUpdated) {
print " " . $ThisOne . ":\n";
foreach my $ThatOne (keys %{$NTPUpdated{$ThisOne}}) {
print "\t " .$ThatOne . "\t: " . $NTPUpdated{$ThisOne}{$ThatOne} . " Time(s)\n";
}
}
}
if (keys %NTPFailed) {
print "\nDevice where failed to get clock through NTP :\n";
foreach my $ThisOne (keys %NTPFailed) {
print " " . $ThisOne . ":\n";
foreach my $ThatOne (keys %{$NTPFailed{$ThisOne}}) {
print "\t " .$ThatOne . "\t: " . $NTPFailed{$ThisOne}{$ThatOne} . " Time(s)\n";
}
}
}
if (keys %SyslogFacility) {
print "\nDevice where Syslog facility has been changed :\n";
foreach my $ThisOne (keys %SyslogFacility) {
print " " . $ThisOne . ":\n";
foreach my $ThatOne (keys %{$SyslogFacility{$ThisOne}}) {
print "\t " .$ThatOne . "\t: " . $SyslogFacility{$ThisOne}{$ThatOne} . " Time(s)\n";
}
}
}
if (keys %SyslogHost) {
print "\nDevice where Syslog host has been changed :\n";
foreach my $ThisOne (keys %SyslogHost) {
print " " . $ThisOne . ":\n";
foreach my $ThatOne (keys %{$SyslogHost{$ThisOne}}) {
print "\t " .$ThatOne . "\t: " . $SyslogHost{$ThisOne}{$ThisOne} . " Time(s)\n";
}
}
}
if (keys %Restarted) {
print "\nDevice restarted :\n";
foreach my $ThisOne (keys %Restarted) {
print " " . $ThisOne . ":\n";
foreach my $ThatOne (keys %{$Restarted{$ThisOne}}) {
print "\t " .$ThatOne . "\t: " . $Restarted{$ThisOne}{$ThatOne} . " Time(s)\n";
}
}
}
if (keys %ReloadRequested) {
print "\nDevice reload requested :\n";
foreach my $ThisOne (keys %ReloadRequested) {
print " " . $ThisOne . ":\n";
foreach my $ThatOne (keys %{$ReloadRequested{$ThisOne}}) {
print "\t " .$ThatOne . "\t: " . $ReloadRequested{$ThisOne}{$ThatOne} . " Time(s)\n";
}
}
}
if (keys %SysCfgSaved) {
print "\nDevice where system config have been saved :\n";
foreach my $ThisOne (keys %SysCfgSaved) {
print " " . $ThisOne . ":\n";
foreach my $ThatOne (keys %{$SysCfgSaved{$ThisOne}}) {
print "\t " .$ThatOne . "\t: " . $SysCfgSaved{$ThisOne}{$ThatOne} . " Time(s)\n";
}
}
}
if (keys %SysCfgSavedCompleted) {
print "\nDevice where system config have been completely saved :\n";
foreach my $ThisOne (keys %SysCfgSavedCompleted) {
print " " . $ThisOne . ":\n";
foreach my $ThatOne (keys %{$SysCfgSavedCompleted{$ThisOne}}) {
print "\t " .$ThatOne . "\t: " . $SysCfgSavedCompleted{$ThisOne}{$ThatOne} . " Time(s)\n";
}
}
}
if (keys %BadLogins) {
print "\nFailed logins from these:\n";
foreach my $ThisOne (keys %BadLogins) {
print " " . $ThisOne . ":\n";
for (sort keys %{$BadLogins{$ThisOne}}) {
print "\t $_: $BadLogins{$ThisOne}{$_} Time(s)\n";
}
}
}
if (keys %IllegalUsers) {
print "\nIllegal users from these:\n";
foreach my $ThisOne (keys %IllegalUsers) {
print " " . $ThisOne . ":\n";
for (sort keys %{$IllegalUsers{$ThisOne}}) {
print "\t $_: $IllegalUsers{$ThisOne}{$_} Time(s)\n";
}
}
}
if (keys %Users) {
print "\nUsers logging in through :\n";
foreach my $ThisOne (keys %Users) {
print " " . $ThisOne . ":\n";
foreach my $user (sort {$a cmp $b} keys %{$Users{$ThisOne}}) {
print " $user:\n";
my $totalSort = TotalCountOrder(%{$Users{$ThisOne}{$user}}, \&SortIP);
foreach my $ip (sort $totalSort keys %{$Users{$ThisOne}{$user}}) {
my $name = LookupIP($ip);
if ($Detail >= 20) {
print " $name:\n";
my $sort = CountOrder(%{$Users{$ThisOne}{$user}{$ip}});
foreach my $method (sort $sort keys %{$Users{$ThisOne}{$user}{$ip}}) {
my $val = $Users{$ThisOne}{$user}{$ip}{$method};
my $plural = ($val > 1) ? "s" : "";
print " $method: $val time$plural\n";
}
} else {
my $val = (values %{$Users{$ThisOne}{$user}{$ip}})[0];
my $plural = ($val > 1) ? "s" : "";
print " $name: $val time$plural\n";
}
}
}
}
}
if (keys %UsersOut) {
print "\nUsers logging out through :\n";
foreach my $ThisOne (keys %UsersOut) {
print " " . $ThisOne . ":\n";
foreach my $user (sort {$a cmp $b} keys %{$UsersOut{$ThisOne}}) {
print " $user:\n";
my $totalSort = TotalCountOrder(%{$UsersOut{$ThisOne}{$user}}, \&SortIP);
foreach my $ip (sort $totalSort keys %{$UsersOut{$ThisOne}{$user}}) {
my $name = LookupIP($ip);
if ($Detail >= 20) {
print " $name:\n";
my $sort = CountOrder(%{$UsersOut{$ThisOne}{$user}{$ip}});
foreach my $method (sort $sort keys %{$UsersOut{$ThisOne}{$user}{$ip}}) {
my $val = $UsersOut{$ThisOne}{$user}{$ip}{$method};
my $plural = ($val > 1) ? "s" : "";
print " $method: $val time$plural\n";
}
} else {
my $val = (values %{$UsersOut{$ThisOne}{$user}{$ip}})[0];
my $plural = ($val > 1) ? "s" : "";
print " $name: $val time$plural\n";
}
}
}
}
}
if ($#OtherList >= 0) {
print "\n**Unmatched Entries**\n";
print @OtherList;
}
exit(0);
# vi: shiftwidth=3 tabstop=3 syntax=perl et
# Local Variables:
# mode: perl
# perl-indent-level: 3
# indent-tabs-mode: nil
# End:
|