Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl -w use strict; #use diagnostics; #use Data::Dumper; my %action = ( 'RECV' => { 0 => 'Allowed Message', 1 => 'Aborted Message', 2 => 'Blocked Message', 3 => 'Quarantined Message', 4 => 'Tagged Message', 5 => 'Deferred Message', 6 => 'Per-User Quarantined Message', 7 => 'Whitelisted Message', '-' => 'Undefined' }, 'SEND' => { 1 => 'Delivered Message', 2 => 'Rejected Message', 3 => 'Deferred Message', 4 => 'Expired Message', '-' => 'Undefined' } ); $action{'SCAN'} = $action{'RECV'}; my %reason = ( 0 => 'Undefined', 1 => 'Virus', 2 => 'Banned Attachment', 3 => 'RBL Match', 4 => 'Rate Control', 5 => 'Too Many Message In Session', 6 => 'Timeout Exceeded', 7 => 'No Such Domain', 8 => 'No Such User', 9 => 'Subject Filter Match', 10 => '', 11 => 'Client IP', 12 => 'Recipient Address Rejected', 13 => 'No Valid Recipients', 14 => 'Domain Not Found', 15 => 'Sender Address Rejected', 16 => '', 17 => 'Need Fully Qualified Recipient', 18 => 'Need Fully Qualified Sender', 19 => 'Unsupported Command', 20 => 'MAIL FROM Syntax Error', 21 => 'Bad Address Syntax', 22 => 'RCPT TO Syntax Error', 23 => 'Send EHLO/HELO first', 24 => 'Need MAIL Command', 25 => 'Nested Mail Command', 26 => '', 27 => 'EHLO/HELO Syntax Error', 28 => '', 29 => '', 30 => 'Mail Protocol Error', 31 => 'Score', 32 => '', 33 => '', 34 => 'Header Filter Match', 35 => 'Sender Block/Accept', 36 => 'Recipient Block/Accept', 37 => 'Body Filter Match', 38 => 'Message Size Bypass', 39 => 'Intention Analysis Match', 40 => 'SPF/Caller-ID', 41 => 'Client Host Rejected', 42 => '', 43 => '', 44 => 'Authentication Not Enabled', 45 => 'Allowed Message Size Exceeded', 46 => 'Too Many Recipients', 47 => 'Need RCPT Command', 48 => 'DATA Syntax Error', 49 => 'Internal Error', 50 => 'Too Many Hops', 51 => '', 52 => '', 53 => '', 54 => '', 55 => 'Invalid Parameter Syntax', 56 => 'STARTTLS Syntax Error', 57 => 'TLS Already Active', 58 => 'Too Many Errors', 59 => 'Need STARTTLS First', 60 => 'Spam Fingetpront Found', '-' => 'Undefined' ); ## Check Usage ## die "usage: spamstat.pl <logfile>\n" unless ( defined ($ARGV[0]) and -f $ARGV[0]); my $file; open $file, $ARGV[0] or die "Unable to open $ARGV[0]: $!\n"; # Define our buckets for collecting data my %bucket = (); my %USER = (); my %VIRUS = (); my %SPAM = (); # These numbers must be valid reason codes... my @wanted = ( 1, 60 ); # We rely on autovivification for counting # it almost seems like cheating... for (<$file>) { chomp; my ( $month, $day, $time, $host, $process, $clientIP, $MessageID, $timeStart, $timeEnd, $service, @INFO ) = split /\s+/; # anything after this point can/should be changed depending on you +r needs. my ( $sender, $recip, $action_, $reason_, @reasonextra, $encrypted, $score, $queueid, @response ); if ( $service =~ /^RECV/ ) { ( $sender, $recip, $action_, $reason_, @reasonextra ) = (@INFO +); print "Action = $action_ Service = $service\n" unless $action{$service}{$action_}; print "Reason = $reason_ Service = $service\n" unless $reason{$reason_}; $VIRUS{$host}{$reasonextra[0]}{'count'}++ if ( $reason_ == 1 ) +; $SPAM{$host}{$recip}{'count'}++ if ( $action_ == 2 and $reason_ == 60 ); $USER{$host}{$recip}{$action{$service}{$action_}}{$reason{$rea +son_}}{'count'}++; #if ( grep /^$reason_$/, @wanted ); $bucket{$host}{$service}{$action{$service}{$action_}}{$reason{ +$reason_}}{'count'}++ } if ( $service =~ /^SCAN/ ) { ( $encrypted, $sender, $recip, $score, $action_, $reason_, @re +asonextra ) = (@INFO); print "Action = $action_ Service = $service\n" unless $action{$service}{$action_}; print "Reason = $reason_ Service = $service\n" unless $reason{$reason_}; $VIRUS{$host}{$reasonextra[0]}{'count'}++ if ( $reason_ == 1 ) +; $SPAM{$host}{$recip}{'count'}++ if ( $action_ == 2 and $reason_ == 60 ); $USER{$host}{$recip}{$action{$service}{$action_}}{$reason{$rea +son_}}{'count'}++; #if ( grep /^$reason_$/, @wanted ); $bucket{$host}{$service}{$action{$service}{$action_}}{$reason{ +$reason_}}{'count'}++; } if ( $service =~ /^SEND/ ) { ( $encrypted, $action_, $queueid, @response ) = (@INFO); $bucket{$host}{$service}{$action{$service}{$action_}}{'count'} +++; } } # Example reports... #for my $host ( keys %VIRUS ) #{ # print "[$host]\n"; # for my $virus ( sort keys %{$VIRUS{$host}} ) # { # printf "\t%-50s %3d\n", $virus, $VIRUS{$host}{$virus}{'count' +}; # } #} #for my $host ( keys %USER ) #{ # print "[$host]\n"; # for my $user ( keys %{$USER{$host}} ) # { # print " $user\n"; # for my $action ( keys %{$USER{$host}{$user}} ) # { # print "\t $action\n"; # for my $reason ( keys %{$USER{$host}{$user}{$action}} ) # { # print "\t\t$reason", # " $USER{$host}{$action}{$reason}{'count'}\n"; # } # } # } #} #for my $host ( keys %SPAM ) #{ # for my $user ( keys %{ $SPAM{$host} } ) # { # print "$user [$SPAM{$host}{$user}{'count'}]\n"; # } #}

In reply to spamstats.pl by tcf03

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (5)
As of 2024-03-28 11:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found