#!/usr/bin/perl ############################################################################### # # # IPFire.org - A linux based firewall # # Copyright (C) 2007-2015 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # # the Free Software Foundation, either version 3 of the License, or # # (at your option) any later version. # # # # This program is distributed in the hope that it will be useful, # # but WITHOUT ANY WARRANTY; without even the implied warranty of # # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # # GNU General Public License for more details. # # # # You should have received a copy of the GNU General Public License # # along with this program. If not, see . # # # ############################################################################### use strict; # enable only the following on debugging purpose #use warnings; #use CGI::Carp 'fatalsToBrowser'; use File::Copy; require '/var/ipfire/general-functions.pl'; require "${General::swroot}/lang.pl"; require "${General::swroot}/header.pl"; my %color = (); my %mainsettings = (); &General::readhash("${General::swroot}/main/settings", \%mainsettings); &General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color); my %snortsettings=(); my %checked=(); my %selected=(); my %netsettings=(); our $errormessage = ''; our $results = ''; our $tempdir = ''; our $url=''; &General::readhash("${General::swroot}/ethernet/settings", \%netsettings); &Header::showhttpheaders(); $snortsettings{'ENABLE_SNORT'} = 'off'; $snortsettings{'ENABLE_SNORT_GREEN'} = 'off'; $snortsettings{'ENABLE_SNORT_BLUE'} = 'off'; $snortsettings{'ENABLE_SNORT_ORANGE'} = 'off'; $snortsettings{'ACTION'} = ''; $snortsettings{'RULES'} = ''; $snortsettings{'OINKCODE'} = ''; $snortsettings{'INSTALLDATE'} = ''; $snortsettings{'FILE'} = ''; &Header::getcgihash(\%snortsettings, {'wantfile' => 1, 'filevar' => 'FH'}); my $snortrulepath = "/etc/snort/rules"; my $restartsnortrequired = 0; my %snortrules; my $rule = ''; my $table1colour = ''; my $table2colour = ''; my $var = ''; my $value = ''; my $tmp = ''; my $linkedrulefile = ''; my $border = ''; my $checkboxname = ''; ## Grab all available snort rules and store them in the snortrules hash. # # Open snort rules directory and do a directory listing. opendir(DIR, $snortrulepath) or die $!; # Loop through the direcory. while (my $file = readdir(DIR)) { # We only want files. next unless (-f "$snortrulepath/$file"); # Ignore empty files. next if (-z "$snortrulepath/$file"); # Use a regular expression to find files ending in .rules next unless ($file =~ m/\.rules$/); # Ignore files which are not read-able. next unless (-R "$snortrulepath/$file"); # Call subfunction to read-in rulefile and add rules to # the snortrules hash. &readrulesfile("$file"); } closedir(DIR); if ($snortsettings{'OINKCODE'} ne "") { $errormessage = $Lang::tr{'invalid input for oink code'} unless ($snortsettings{'OINKCODE'} =~ /^[a-z0-9]+$/); } if (!$errormessage) { if ($snortsettings{'RULES'} eq 'subscripted') { $url=" https://www.snort.org/rules/snortrules-snapshot-29111.tar.gz?oinkcode=$snortsettings{'OINKCODE'}"; } elsif ($snortsettings{'RULES'} eq 'registered') { $url=" https://www.snort.org/rules/snortrules-snapshot-29111.tar.gz?oinkcode=$snortsettings{'OINKCODE'}"; } elsif ($snortsettings{'RULES'} eq 'community') { $url=" https://www.snort.org/rules/community"; } else { $url="http://rules.emergingthreats.net/open/snort-2.9.0/emerging.rules.tar.gz"; } if ($snortsettings{'ACTION'} eq $Lang::tr{'save'} && $snortsettings{'ACTION2'} eq "snort" ) { &General::writehash("${General::swroot}/snort/settings", \%snortsettings); if ($snortsettings{'ENABLE_SNORT'} eq 'on') { system ('/usr/bin/touch', "${General::swroot}/snort/enable"); } else { unlink "${General::swroot}/snort/enable"; } if ($snortsettings{'ENABLE_SNORT_GREEN'} eq 'on') { system ('/usr/bin/touch', "${General::swroot}/snort/enable_green"); } else { unlink "${General::swroot}/snort/enable_green"; } if ($snortsettings{'ENABLE_SNORT_BLUE'} eq 'on') { system ('/usr/bin/touch', "${General::swroot}/snort/enable_blue"); } else { unlink "${General::swroot}/snort/enable_blue"; } if ($snortsettings{'ENABLE_SNORT_ORANGE'} eq 'on') { system ('/usr/bin/touch', "${General::swroot}/snort/enable_orange"); } else { unlink "${General::swroot}/snort/enable_orange"; } if ($snortsettings{'ENABLE_PREPROCESSOR_HTTP_INSPECT'} eq 'on') { system ('/usr/bin/touch', "${General::swroot}/snort/enable_preprocessor_http_inspect"); } else { unlink "${General::swroot}/snort/enable_preprocessor_http_inspect"; } system('/usr/local/bin/snortctrl restart >/dev/null'); } # INSTALLMD5 is not in the form, so not retrieved by getcgihash &General::readhash("${General::swroot}/snort/settings", \%snortsettings); if ($snortsettings{'ACTION'} eq $Lang::tr{'download new ruleset'}) { my @df = `/bin/df -B M /var`; foreach my $line (@df) { next if $line =~ m/^Filesystem/; my $return; if ($line =~ m/dev/ ) { $line =~ m/^.* (\d+)M.*$/; my @temp = split(/ +/,$line); if ($1<300) { $errormessage = "$Lang::tr{'not enough disk space'} < 300MB, /var $1MB"; } else { if ( $snortsettings{'ACTION'} eq $Lang::tr{'download new ruleset'}) { &downloadrulesfile(); sleep(3); $return = `cat /var/tmp/log 2>/dev/null`; } if ($return =~ "ERROR") { $errormessage = "
".$return."
"; } else { system("/usr/local/bin/oinkmaster.pl -v -s -u file:///var/tmp/snortrules.tar.gz -C /var/ipfire/snort/oinkmaster.conf -o /etc/snort/rules >>/var/tmp/log 2>&1 &"); sleep(2); } } } } } } $checked{'ENABLE_SNORT'}{'off'} = ''; $checked{'ENABLE_SNORT'}{'on'} = ''; $checked{'ENABLE_SNORT'}{$snortsettings{'ENABLE_SNORT'}} = "checked='checked'"; $checked{'ENABLE_SNORT_GREEN'}{'off'} = ''; $checked{'ENABLE_SNORT_GREEN'}{'on'} = ''; $checked{'ENABLE_SNORT_GREEN'}{$snortsettings{'ENABLE_SNORT_GREEN'}} = "checked='checked'"; $checked{'ENABLE_SNORT_BLUE'}{'off'} = ''; $checked{'ENABLE_SNORT_BLUE'}{'on'} = ''; $checked{'ENABLE_SNORT_BLUE'}{$snortsettings{'ENABLE_SNORT_BLUE'}} = "checked='checked'"; $checked{'ENABLE_SNORT_ORANGE'}{'off'} = ''; $checked{'ENABLE_SNORT_ORANGE'}{'on'} = ''; $checked{'ENABLE_SNORT_ORANGE'}{$snortsettings{'ENABLE_SNORT_ORANGE'}} = "checked='checked'"; $selected{'RULES'}{'nothing'} = ''; $selected{'RULES'}{'community'} = ''; $selected{'RULES'}{'emerging'} = ''; $selected{'RULES'}{'registered'} = ''; $selected{'RULES'}{'subscripted'} = ''; $selected{'RULES'}{$snortsettings{'RULES'}} = "selected='selected'"; &Header::openpage($Lang::tr{'intrusion detection system'}, 1, ''); ### Java Script ### print < // Tiny java script function to show/hide the rules // of a given category. function showhide(tblname) { \$("#" + tblname).toggle(); } END ; print < END ; &Header::openbigbox('100%', 'left', '', $errormessage); ############### # DEBUG DEBUG # &Header::openbox('100%', 'left', 'DEBUG'); # my $debugCount = 0; # foreach my $line (sort keys %snortsettings) { # print "$line = $snortsettings{$line}
\n"; # $debugCount++; # } # print " Count: $debugCount\n"; # &Header::closebox(); # DEBUG DEBUG ############### if ($errormessage) { &Header::openbox('100%', 'left', $Lang::tr{'error messages'}); print "$errormessage\n"; print " \n"; &Header::closebox(); } my $return = `pidof oinkmaster.pl -x`; chomp($return); if ($return) { &Header::openbox( 'Waiting', 1, "" ); print < $Lang::tr{  $Lang::tr{'snort working'}
END
	my @output = `tail -20 /var/tmp/log`;
	foreach (@output) {
		print "$_";
	}
	print <
		
END
	&Header::closebox();
	&Header::closebigbox();
	&Header::closepage();
	exit;
	refreshpage();
}

&Header::openbox('100%', 'left', $Lang::tr{'intrusion detection system'});
print <";

print <
GREEN Snort END ; if ($netsettings{'BLUE_DEV'} ne '') { print "       BLUE Snort"; } if ($netsettings{'ORANGE_DEV'} ne '') { print "       ORANGE Snort"; } print "       RED Snort"; print <


$Lang::tr{'ids rules update'}

$Lang::tr{'ids rules license'} www.snort.org$Lang::tr{'ids rules license1'}

$Lang::tr{'ids rules license2'} Get an Oinkcode, $Lang::tr{'ids rules license3'}
Oinkcode: 

END ; if ( -e "/var/tmp/snortrules.tar.gz"){ my @Info = stat("/var/tmp/snortrules.tar.gz"); $snortsettings{'INSTALLDATE'} = localtime($Info[9]); } print " $Lang::tr{'updates installed'}: $snortsettings{'INSTALLDATE'}


END ; if ($results ne '') { print "$results"; } &Header::closebox(); &Header::openbox('100%', 'LEFT', $Lang::tr{'intrusion detection system rules'}); # Output display table for rule files print "\n"; # Local variable required for java script to show/hide # rules of a rulefile. my $rulesetcount = 1; # Loop over each rule file foreach my $rulefile (sort keys(%snortrules)) { my $rulechecked = ''; # Check if rule file is enabled if ($snortrules{$rulefile}{"State"} eq 'Enabled') { $rulechecked = 'CHECKED'; } # Table and rows for the rule files. print"\n"; print"\n"; print"\n"; print"\n"; print"\n"; # Rows which will be hidden per default and will contain the single rules. print"\n"; print""; # Finished whith the rule file, increase count. $rulesetcount++; } # Close display table print "
\n"; print"\n"; print"$rulefile\n"; print"SHOW\n"; print"
"; print <   END ; &Header::closebox(); &Header::closebigbox(); &Header::closepage(); sub refreshpage { &Header::openbox( 'Waiting', 1, "" ); print "

$Lang::tr{'pagerefresh'}
"; &Header::closebox(); } sub downloadrulesfile { my $peer; my $peerport; unlink("/var/tmp/log"); unless (-e "${General::swroot}/red/active") { $errormessage = $Lang::tr{'could not download latest updates'}; return undef; } my %proxysettings=(); &General::readhash("${General::swroot}/proxy/settings", \%proxysettings); if ($_=$proxysettings{'UPSTREAM_PROXY'}) { ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?)?$/); } if ($peer) { system("wget -r --proxy=on --proxy-user=$proxysettings{'UPSTREAM_USER'} --proxy-passwd=$proxysettings{'UPSTREAM_PASSWORD'} -e http_proxy=http://$peer:$peerport/ -o /var/tmp/log --output-document=/var/tmp/snortrules.tar.gz $url"); } else { system("wget -r -o /var/tmp/log --output-document=/var/tmp/snortrules.tar.gz $url"); } } sub readrulesfile ($) { my $rulefile = shift; # Open rule file and read in contents open(RULEFILE, "$snortrulepath/$rulefile") or die "Unable to read $rulefile!"; # Store file content in an array. my @lines = ; # Close file. close(RULEFILE); # Loop over rule file contents foreach my $line (@lines) { # Remove whitespaces. chomp $line; # Skip blank lines. next if ($line =~ /^\s*$/); # Local vars. my $sid; my $msg; # Gather rule sid and message from the ruleline. if ($line =~ m/.*msg:\"(.*?)\"\; .* sid:(.*?); /) { $msg = $1; $sid = $2; # Check if a rule has been found. if ($sid && $msg) { # Add rule to the snortrules hash. $snortrules{$rulefile}{$sid}{'Description'} = $msg; # Grab status of the rule. Check if ruleline starts with a "dash". if ($line =~ /^\#/) { # If yes, the rule is disabled. $snortrules{$rulefile}{$sid}{'State'} = "Disabled"; } else { # Otherwise the rule is enabled. $snortrules{$rulefile}{$sid}{'State'} = "Enabled"; } } } } }