|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21571/root/usr/share/logwatch/scripts/services/ |
Upload File : |
##########################################################################
# $Id: afpd,v 1.7 2005/07/13 16:07:53 mike Exp $
##########################################################################
$Detail = $ENV{'LOGWATCH_DETAIL_LEVEL'} || 0;
$IgnoreUnmatched = $ENV{'afpd_ignore_unmatched'} || 0;
while (defined($ThisLine = <STDIN>)) {
if ( ( $ThisLine =~ /^FTP session closed./ ) or
( $ThisLine =~ /^(ANONYMOUS )?FTP login as \'.*\' from [^ ]+ \[.*\] to .*/ ) or
( $ThisLine =~ /^FTP no transfer time out, disconnected\./ ) or
( $ThisLine =~ /^PAM\(.*\): Authentication failure/ ) or
( $ThisLine =~ /^data_sendfile/ ) or
( $ThisLine =~ /^FTP no transfer timeout, disconnected\./ ) or
( $ThisLine =~ /^FTP login timed out, disconnected\./ ) or
( $ThisLine =~ /done/ ) or
( $ThisLine =~ /server_child/ ) or
( $ThisLine =~ /session from/ ) or
( $ThisLine =~ /ASIP session/ ) or
( $ThisLine =~ /logout/ )
) {
# We don't care about these
}
elsif ( ($Login) = ( $ThisLine =~ /login ([^ ]+)/) ) {
$UserLogin{$Login}++;
}
else {
# Report any unmatched entries...
push @OtherList,$ThisLine;
}
}
if (keys %UserLogin) {
print "\nUsers Logged In:\n";
foreach $Line (keys %UserLogin) {
print " $Line : $UserLogin{$Line} Time(s)\n";
}
}
if (($#OtherList >= 0) and (not $IgnoreUnmatched)) {
print "\n**Unmatched Entries**\n";
print @OtherList;
}
exit(0);
# vi: shiftwidth=3 tabstop=3 syntax=perl et