#!/usr/bin/perl ############################################################################### # # # IPFire.org - A linux based firewall # # Copyright (C) 2007-2018 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'; require '/var/ipfire/general-functions.pl'; require "${General::swroot}/lang.pl"; require "${General::swroot}/header.pl"; require "${General::swroot}/ids-functions.pl"; my %color = (); my %mainsettings = (); my %idsrules = (); my %idssettings=(); my %rulessettings=(); my %rulesetsources = (); my %cgiparams=(); my %checked=(); my %selected=(); my %ignored=(); # Read-in main settings, for language, theme and colors. &General::readhash("${General::swroot}/main/settings", \%mainsettings); &General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color); # Get the available network zones, based on the config type of the system and store # the list of zones in an array. my @network_zones = &IDS::get_available_network_zones(); # File where the used rulefiles are stored. my $idsusedrulefilesfile = "$IDS::settingsdir/suricata-used-rulefiles.yaml"; # File where the addresses of the homenet are stored. my $idshomenetfile = "$IDS::settingsdir/suricata-homenet.yaml"; # File which contains the enabled sids. my $enabled_sids_file = "$IDS::settingsdir/oinkmaster-enabled-sids.conf"; # File which contains the disabled sids. my $disabled_sids_file = "$IDS::settingsdir/oinkmaster-disabled-sids.conf"; # File which contains wheater the rules should be changed. my $modify_sids_file = "$IDS::settingsdir/oinkmaster-modify-sids.conf"; # File which stores the configured IPS settings. my $idssettingsfile = "$IDS::settingsdir/settings"; # File which stores the configured rules-settings. my $rulessettingsfile = "$IDS::settingsdir/rules-settings"; # File which stores the configured settings for whitelisted addresses. my $ignoredfile = "$IDS::settingsdir/ignored"; # File which contains the rules to whitelist addresses on suricata. my $whitelistfile = "$IDS::rulespath/whitelist.rules"; my $errormessage; # Create files if they does not exist yet. unless (-f "$enabled_sids_file") { &IDS::create_empty_file($enabled_sids_file); } unless (-f "$disabled_sids_file") { &IDS::create_empty_file($disabled_sids_file); } unless (-f "$modify_sids_file") { &IDS::create_empty_file($modify_sids_file); } unless (-f "$idsusedrulefilesfile") { &IDS::create_empty_file($idsusedrulefilesfile); } unless (-f "$idssettingsfile") { &IDS::create_empty_file($idssettingsfile); } unless (-f "$rulessettingsfile") { &IDS::create_empty_file($rulessettingsfile); } unless (-f "$ignoredfile") { &IDS::create_empty_file($ignoredfile); } unless (-f "$whitelistfile" ) { &IDS::create_empty_file($whitelistfile); } &Header::showhttpheaders(); #Get GUI values &Header::getcgihash(\%cgiparams); ## Add/edit an entry to the ignore file. # if (($cgiparams{'WHITELIST'} eq $Lang::tr{'add'}) || ($cgiparams{'WHITELIST'} eq $Lang::tr{'update'})) { # Check if any input has been performed. if ($cgiparams{'IGNORE_ENTRY_ADDRESS'} ne '') { # Check if the given input is no valid IP-address or IP-address with subnet, display an error message. if ((!&General::validip($cgiparams{'IGNORE_ENTRY_ADDRESS'})) && (!&General::validipandmask($cgiparams{'IGNORE_ENTRY_ADDRESS'}))) { $errormessage = "$Lang::tr{'guardian invalid address or subnet'}"; } } else { $errormessage = "$Lang::tr{'guardian empty input'}"; } # Go further if there was no error. if ($errormessage eq '') { my %ignored = (); my $id; my $status; # Assign hash values. my $new_entry_address = $cgiparams{'IGNORE_ENTRY_ADDRESS'}; my $new_entry_remark = $cgiparams{'IGNORE_ENTRY_REMARK'}; # Read-in ignoredfile. &General::readhasharray($ignoredfile, \%ignored); # Check if we should edit an existing entry and got an ID. if (($cgiparams{'WHITELIST'} eq $Lang::tr{'update'}) && ($cgiparams{'ID'})) { # Assin the provided id. $id = $cgiparams{'ID'}; # Undef the given ID. undef($cgiparams{'ID'}); # Grab the configured status of the corresponding entry. $status = $ignored{$id}[2]; } else { # Each newly added entry automatically should be enabled. $status = "enabled"; # Generate the ID for the new entry. # # Sort the keys by their ID and store them in an array. my @keys = sort { $a <=> $b } keys %ignored; # Reverse the key array. my @reversed = reverse(@keys); # Obtain the last used id. my $last_id = @reversed[0]; # Increase the last id by one and use it as id for the new entry. $id = ++$last_id; } # Add/Modify the entry to/in the ignored hash. $ignored{$id} = ["$new_entry_address", "$new_entry_remark", "$status"]; # Write the changed ignored hash to the ignored file. &General::writehasharray($ignoredfile, \%ignored); # Regenerate the ignore file. &GenerateIgnoreFile(); } # Check if the IDS is running. if(&IDS::ids_is_running()) { # Call suricatactrl to perform a reload. &IDS::call_suricatactrl("reload"); } ## Toggle Enabled/Disabled for an existing entry on the ignore list. # } elsif ($cgiparams{'WHITELIST'} eq $Lang::tr{'toggle enable disable'}) { my %ignored = (); # Only go further, if an ID has been passed. if ($cgiparams{'ID'}) { # Assign the given ID. my $id = $cgiparams{'ID'}; # Undef the given ID. undef($cgiparams{'ID'}); # Read-in ignoredfile. &General::readhasharray($ignoredfile, \%ignored); # Grab the configured status of the corresponding entry. my $status = $ignored{$id}[2]; # Switch the status. if ($status eq "disabled") { $status = "enabled"; } else { $status = "disabled"; } # Modify the status of the existing entry. $ignored{$id} = ["$ignored{$id}[0]", "$ignored{$id}[1]", "$status"]; # Write the changed ignored hash to the ignored file. &General::writehasharray($ignoredfile, \%ignored); # Regenerate the ignore file. &GenerateIgnoreFile(); # Check if the IDS is running. if(&IDS::ids_is_running()) { # Call suricatactrl to perform a reload. &IDS::call_suricatactrl("reload"); } } ## Remove entry from ignore list. # } elsif ($cgiparams{'WHITELIST'} eq $Lang::tr{'remove'}) { my %ignored = (); # Read-in ignoredfile. &General::readhasharray($ignoredfile, \%ignored); # Drop entry from the hash. delete($ignored{$cgiparams{'ID'}}); # Undef the given ID. undef($cgiparams{'ID'}); # Write the changed ignored hash to the ignored file. &General::writehasharray($ignoredfile, \%ignored); # Regenerate the ignore file. &GenerateIgnoreFile(); # Check if the IDS is running. if(&IDS::ids_is_running()) { # Call suricatactrl to perform a reload. &IDS::call_suricatactrl("reload"); } } # Check if any error has been stored. if (-e $IDS::storederrorfile) { # Open file to read in the stored error message. open(FILE, "<$IDS::storederrorfile") or die "Could not open $IDS::storederrorfile. $!\n"; # Read the stored error message. $errormessage = ; # Close file. close (FILE); # Delete the file, which is now not longer required. unlink($IDS::storederrorfile); } ## Grab all available snort rules and store them in the idsrules hash. # # Open snort rules directory and do a directory listing. opendir(DIR, $IDS::rulespath) or die $!; # Loop through the direcory. while (my $file = readdir(DIR)) { # We only want files. next unless (-f "$IDS::rulespath/$file"); # Ignore empty files. next if (-z "$IDS::rulespath/$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 "$IDS::rulespath/$file"); # Skip whitelist rules file. next if( $file eq "whitelist.rules"); # Call subfunction to read-in rulefile and add rules to # the idsrules hash. &readrulesfile("$file"); } closedir(DIR); # Gather used rulefiles. # # Check if the file for activated rulefiles is not empty. if(-f $idsusedrulefilesfile) { # Open the file for used rulefile and read-in content. open(FILE, $idsusedrulefilesfile) or die "Could not open $idsusedrulefilesfile. $!\n"; # Read-in content. my @lines = ; # Close file. close(FILE); # Loop through the array. foreach my $line (@lines) { # Remove newlines. chomp($line); # Skip comments. next if ($line =~ /\#/); # Skip blank lines. next if ($line =~ /^\s*$/); # Gather rule sid and message from the ruleline. if ($line =~ /.*- (.*)/) { my $rulefile = $1; # Check if the current rulefile exists in the %idsrules hash. # If not, the file probably does not exist anymore or contains # no rules. if($idsrules{$rulefile}) { # Add the rulefile state to the %idsrules hash. $idsrules{$rulefile}{'Rulefile'}{'State'} = "on"; } } } } # Save ruleset configuration. if ($cgiparams{'RULESET'} eq $Lang::tr{'save'}) { my %oldsettings; # Read-in current (old) IDS settings. &General::readhash("$rulessettingsfile", \%oldsettings); # Prevent form name from been stored in conf file. delete $cgiparams{'RULESET'}; # Check if an oinkcode has been provided. if ($cgiparams{'OINKCODE'}) { # Check if the oinkcode contains unallowed chars. unless ($cgiparams{'OINKCODE'} =~ /^[a-z0-9]+$/) { $errormessage = $Lang::tr{'invalid input for oink code'}; } } # Go on if there are no error messages. if (!$errormessage) { # Store settings into settings file. &General::writehash("$rulessettingsfile", \%cgiparams); } # Check if the the automatic rule update hass been touched. if($cgiparams{'AUTOUPDATE_INTERVAL'} ne $oldsettings{'AUTOUPDATE_INTERVAL'}) { # Call suricatactrl to set the new interval. &IDS::call_suricatactrl("cron", $cgiparams{'AUTOUPDATE_INTERVAL'}); } # Save ruleset. } elsif ($cgiparams{'RULESET'} eq $Lang::tr{'update'}) { # Arrays to store which rulefiles have been enabled and will be used. my @enabled_rulefiles; # Hash to store the user-enabled and disabled sids. my %enabled_disabled_sids; # Loop through the hash of idsrules. foreach my $rulefile(keys %idsrules) { # Check if the rulefile is enabled. if ($cgiparams{$rulefile} eq "on") { # Add rulefile to the array of enabled rulefiles. push(@enabled_rulefiles, $rulefile); # Drop item from cgiparams hash. delete $cgiparams{$rulefile}; } } # Read-in the files for enabled/disabled sids. # This will be done by calling the read_enabled_disabled_sids_file function two times # and merge the returned hashes together into the enabled_disabled_sids hash. %enabled_disabled_sids = ( &read_enabled_disabled_sids_file($disabled_sids_file), &read_enabled_disabled_sids_file($enabled_sids_file)); # Loop through the hash of idsrules. foreach my $rulefile (keys %idsrules) { # Loop through the single rules of the rulefile. foreach my $sid (keys %{$idsrules{$rulefile}}) { # Skip the current sid if it is not numeric. next unless ($sid =~ /\d+/ ); # Check if there exists a key in the cgiparams hash for this sid. if (exists($cgiparams{$sid})) { # Look if the rule is disabled. if ($idsrules{$rulefile}{$sid}{'State'} eq "off") { # Check if the state has been set to 'on'. if ($cgiparams{$sid} eq "on") { # Add/Modify the sid to/in the enabled_disabled_sids hash. $enabled_disabled_sids{$sid} = "enabled"; # Drop item from cgiparams hash. delete $cgiparams{$rulefile}{$sid}; } } } else { # Look if the rule is enabled. if ($idsrules{$rulefile}{$sid}{'State'} eq "on") { # Check if the state is 'on' and should be disabled. # In this case there is no entry # for the sid in the cgiparams hash. # Add/Modify it to/in the enabled_disabled_sids hash. $enabled_disabled_sids{$sid} = "disabled"; # Drop item from cgiparams hash. delete $cgiparams{$rulefile}{$sid}; } } } } # Open enabled sid's file for writing. open(ENABLED_FILE, ">$enabled_sids_file") or die "Could not write to $enabled_sids_file. $!\n"; # Open disabled sid's file for writing. open(DISABLED_FILE, ">$disabled_sids_file") or die "Could not write to $disabled_sids_file. $!\n"; # Write header to the files. print ENABLED_FILE "#Autogenerated file. Any custom changes will be overwritten!\n"; print DISABLED_FILE "#Autogenerated file. Any custom changes will be overwritten!\n"; # Check if the hash for enabled/disabled files contains any entries. if (%enabled_disabled_sids) { # Loop through the hash. foreach my $sid (keys %enabled_disabled_sids) { # Check if the sid is enabled. if ($enabled_disabled_sids{$sid} eq "enabled") { # Print the sid to the enabled_sids file. print ENABLED_FILE "enablesid $sid\n"; # Check if the sid is disabled. } elsif ($enabled_disabled_sids{$sid} eq "disabled") { # Print the sid to the disabled_sids file. print DISABLED_FILE "disablesid $sid\n"; # Something strange happende - skip the current sid. } else { next; } } } # Close file for enabled_sids after writing. close(ENABLED_FILE); # Close file for disabled_sids after writing. close(DISABLED_FILE); # Open file for used rulefiles. open (FILE, ">$idsusedrulefilesfile") or die "Could not write to $idsusedrulefilesfile. $!\n"; # Write yaml header to the file. print FILE "%YAML 1.1\n"; print FILE "---\n\n"; # Write header to file. print FILE "#Autogenerated file. Any custom changes will be overwritten!\n"; # Allways load the whitelist. print FILE " - whitelist.rules\n"; # Check if the enabled_rulefiles array contains any entries. if (@enabled_rulefiles) { # Loop through the array of rulefiles which should be loaded and write them to the file. foreach my $file (@enabled_rulefiles) { print FILE " - $file\n"; } } # Close file after writing. close(FILE); # Lock the webpage and print message. &working_notice("$Lang::tr{'snort working'}"); # Call oinkmaster to alter the ruleset. &IDS::oinkmaster(); # Check if the IDS is running. if(&IDS::ids_is_running()) { # Call suricatactrl to perform a reload. &IDS::call_suricatactrl("reload"); } # Reload page. &reload(); # Download new ruleset. } elsif ($cgiparams{'RULESET'} eq $Lang::tr{'download new ruleset'}) { # Check if the red device is active. unless (-e "${General::swroot}/red/active") { $errormessage = $Lang::tr{'could not download latest updates'}; } # Check if enought free disk space is availabe. if(&IDS::checkdiskspace()) { $errormessage = "$Lang::tr{'not enough disk space'}"; } # Check if any errors happend. unless ($errormessage) { # Lock the webpage and print notice about downloading # a new ruleset. &working_notice("$Lang::tr{'snort working'}"); # Call subfunction to download the ruleset. if(&IDS::downloadruleset()) { $errormessage = $Lang::tr{'could not download latest updates'}; # Call function to store the errormessage. &IDS::_store_error_message($errormessage); # Preform a reload of the page. &reload(); } else { # Call subfunction to launch oinkmaster. &IDS::oinkmaster(); # Check if the IDS is running. if(&IDS::ids_is_running()) { # Call suricatactrl to perform a reload. &IDS::call_suricatactrl("reload"); } # Perform a reload of the page. &reload(); } } # Save snort settings. } elsif ($cgiparams{'IDS'} eq $Lang::tr{'save'}) { my %oldidssettings; my $reload_page; my $monitored_zones = 0; # Read-in current (old) IDS settings. &General::readhash("$idssettingsfile", \%oldidssettings); # Prevent form name from been stored in conf file. delete $cgiparams{'IDS'}; # Check if the IDS should be enabled. if ($cgiparams{'ENABLE_IDS'} eq "on") { # Check if any ruleset is available. Otherwise abort and display an error. unless(%idsrules) { $errormessage = $Lang::tr{'ids no ruleset available'}; } # Loop through the array of available interfaces. foreach my $zone (@network_zones) { # Convert interface name into upper case. my $zone_upper = uc($zone); # Check if the IDS is enabled for this interaces. if ($cgiparams{"ENABLE_IDS_$zone_upper"}) { # Increase count. $monitored_zones++; } } # Check if at least one zone should be monitored, or show an error. unless ($monitored_zones >= 1) { $errormessage = $Lang::tr{'ids no network zone'}; } } # Go on if there are no error messages. if (!$errormessage) { # Store settings into settings file. &General::writehash("$idssettingsfile", \%cgiparams); } # Generate file to store the home net. &generate_home_net_file(); # Check if the runmode has been changed. if($cgiparams{'RUN_MODE'} ne $oldidssettings{'RUN_MODE'}) { # Open modify sid's file for writing. open(FILE, ">$modify_sids_file") or die "Could not write to $modify_sids_file. $!\n"; # Write file header. print FILE "#Autogenerated file. Any custom changes will be overwritten!\n"; # Check if the configured runmode is IPS. if ($cgiparams{'RUN_MODE'} eq 'IPS') { # Tell oinkmaster to switch all rules from alert to drop. print FILE "modifysid \* \"alert\" \| \"drop\"\n"; } # Close file handle. close(FILE); # Check if a ruleset exists. if (%idsrules) { # Lock the webpage and print message. &working_notice("$Lang::tr{'snort working'}"); # Call oinkmaster to alter the ruleset. &IDS::oinkmaster(); # Set reload_page to "True". $reload_page="True"; } } # Check if the IDS currently is running. if(&IDS::ids_is_running()) { # Check if ENABLE_IDS is set to on. if($cgiparams{'ENABLE_IDS'} eq "on") { # Call suricatactrl to perform a reload of suricata. &IDS::call_suricatactrl("reload"); } else { # Call suricatactrl to stop suricata. &IDS::call_suricatactrl("stop"); } } else { # Call suricatactrl to start suricata. &IDS::call_suricatactrl("start"); } # Check if the page should be reloaded. if ($reload_page) { # Perform a reload of the page. &reload(); } } # Read-in idssettings and rulesetsettings &General::readhash("$idssettingsfile", \%idssettings); &General::readhash("$rulessettingsfile", \%rulessettings); # If the runmode has not been configured yet, set default value. unless(exists($idssettings{'RUN_MODE'})) { # Set default to IPS. $idssettings{'RUN_MODE'} = 'IPS'; } # If no autoupdate intervall has been configured yet, set default value. unless(exists($rulessettings{'AUTOUPDATE_INTERVAL'})) { # Set default to "weekly". $rulessettings{'AUTOUPDATE_INTERVAL'} = 'weekly'; } # Read-in ignored hosts. &General::readhasharray("$IDS::settingsdir/ignored", \%ignored); $checked{'ENABLE_IDS'}{'off'} = ''; $checked{'ENABLE_IDS'}{'on'} = ''; $checked{'ENABLE_IDS'}{$idssettings{'ENABLE_IDS'}} = "checked='checked'"; $checked{'RUN_MODE'}{'IDS'} = ''; $checked{'RUN_MODE'}{'IPS'} = ''; $checked{'RUN_MODE'}{$idssettings{'RUN_MODE'}} = "checked='checked'"; $selected{'RULES'}{'nothing'} = ''; $selected{'RULES'}{'community'} = ''; $selected{'RULES'}{'emerging'} = ''; $selected{'RULES'}{'registered'} = ''; $selected{'RULES'}{'subscripted'} = ''; $selected{'RULES'}{$rulessettings{'RULES'}} = "selected='selected'"; $selected{'AUTOUPDATE_INTERVAL'}{'off'} = ''; $selected{'AUTOUPDATE_INTERVAL'}{'daily'} = ''; $selected{'AUTOUPDATE_INTERVAL'}{'weekly'} = ''; $selected{'AUTOUPDATE_INTERVAL'}{$rulessettings{'AUTOUPDATE_INTERVAL'}} = "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 ; &Header::openbigbox('100%', 'left', '', $errormessage); if ($errormessage) { &Header::openbox('100%', 'left', $Lang::tr{'error messages'}); print "$errormessage\n"; print " \n"; &Header::closebox(); } # Draw current state of the IDS &Header::openbox('100%', 'left', $Lang::tr{'intrusion detection system'}); # Check if the IDS is running and obtain the process-id. my $pid = &IDS::ids_is_running(); # Display some useful information, if suricata daemon is running. if ($pid) { # Gather used memory. my $memory = &get_memory_usage($pid); print < $Lang::tr{'intrusion detection'} $Lang::tr{'guardian daemon'} $Lang::tr{'running'} PID $Lang::tr{'memory'} $pid $memory KB END } else { # Otherwise display a hint that the service is not launched. print < $Lang::tr{'intrusion detection'} $Lang::tr{'guardian daemon'} $Lang::tr{'stopped'} END } &Header::closebox(); # Draw elements for IDS configuration. &Header::openbox('100%', 'center', $Lang::tr{'settings'}); print < END ; # Loop through the array of available networks and print config options. foreach my $zone (@network_zones) { my $checked_input; my $checked_forward; # Convert current zone name to upper case. my $zone_upper = uc($zone); # Grab checkbox status from settings hash. if ($idssettings{"ENABLE_IDS_$zone_upper"} eq "on") { $checked_input = "checked = 'checked'"; } print "\n"; } print <
$Lang::tr{'ids activate'} $Lang::tr{'intrusion detection system'}


$Lang::tr{'runmode'}
$Lang::tr{'intrusion detection system2'}     $Lang::tr{'intrusion prevention system'}

$Lang::tr{'ids traffic analyze'}
\n"; print "$Lang::tr{'enabled on'} $Lang::tr{$zone}\n"; print "


END ; &Header::closebox(); # Draw elements for ruleset configuration. &Header::openbox('100%', 'center', $Lang::tr{'ids ruleset settings'}); my $rulesdate; # Check if a ruleset allready has been downloaded. if ( -f "$IDS::rulestarball"){ # Call stat on the filename to obtain detailed information. my @Info = stat("$IDS::rulestarball"); # Grab details about the creation time. $rulesdate = localtime($Info[9]); } print <
$Lang::tr{'ids rules update'} $Lang::tr{'ids automatic 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 ; # Check if a ruleset source has been configured yet. unless($rulessettings{'RULES'}) { # If no ruleset settings have been saved yet, disable the button to download / update the ruleset. print"\n"; } else { # Ruleset setting have been saved. - Check if a ruleset already is downloaded. if (%idsrules) { # Allow to press the button and show it as "update ruleset". print"\n"; } else { # Also allow to press the button, but show it as "download new ruleset". print"\n"; } } print <
END ; &Header::closebox(); # # Whitelist / Ignorelist # &Header::openbox('100%', 'center', $Lang::tr{'guardian ignored hosts'}); print < $Lang::tr{'ip address'} $Lang::tr{'remark'} END # Check if some hosts have been added to be ignored. if (keys (%ignored)) { my $col = ""; # Loop through all entries of the hash. while( (my $key) = each %ignored) { # Assign data array positions to some nice variable names. my $address = $ignored{$key}[0]; my $remark = $ignored{$key}[1]; my $status = $ignored{$key}[2]; # Check if the key (id) number is even or not. if ($cgiparams{'ID'} eq $key) { $col="bgcolor='${Header::colouryellow}'"; } elsif ($key % 2) { $col="bgcolor='$color{'color22'}'"; } else { $col="bgcolor='$color{'color20'}'"; } # Choose icon for the checkbox. my $gif; my $gdesc; # Check if the status is enabled and select the correct image and description. if ($status eq 'enabled' ) { $gif = 'on.gif'; $gdesc = $Lang::tr{'click to disable'}; } else { $gif = 'off.gif'; $gdesc = $Lang::tr{'click to enable'}; } print < $address $remark
END } } else { # Print notice that currently no hosts are ignored. print "\n"; print "$Lang::tr{'guardian no entries'}\n"; print "\n"; } print "\n"; # Section to add new elements or edit existing ones. print <

END # Assign correct headline and button text. my $buttontext; my $entry_address; my $entry_remark; # Check if an ID (key) has been given, in this case an existing entry should be edited. if ($cgiparams{'ID'} ne '') { $buttontext = $Lang::tr{'update'}; print "\n"; # Grab address and remark for the given key. $entry_address = $ignored{$cgiparams{'ID'}}[0]; $entry_remark = $ignored{$cgiparams{'ID'}}[1]; } else { $buttontext = $Lang::tr{'add'}; print "\n"; } print <
$Lang::tr{'update'}
$Lang::tr{'dnsforward add a new entry'}
$Lang::tr{'ip address'}: $Lang::tr{'remark'}:
END &Header::closebox(); # Only show the section for configuring the ruleset if one is present. if (%idsrules) { &Header::openbox('100%', 'LEFT', $Lang::tr{'intrusion detection system rules'}); print"
\n"; # Output display table for rule files print "\n"; # Loop over each rule file foreach my $rulefile (sort keys(%idsrules)) { my $rulechecked = ''; # Check if rule file is enabled if ($idsrules{$rulefile}{'Rulefile'}{'State'} eq 'on') { $rulechecked = 'CHECKED'; } # Convert rulefile name into category name. my $categoryname = &_rulefile_to_category($rulefile); # 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""; } # Close display table print "
\n"; print"\n"; print"$rulefile\n"; print"SHOW\n"; print"
"; print <   END ; &Header::closebox(); } &Header::closebigbox(); &Header::closepage(); # ## A function to display a notice, to lock the webpage and ## tell the user which action currently will be performed. # sub working_notice ($) { my ($message) = @_; &Header::openpage($Lang::tr{'intrusion detection system'}, 1, ''); &Header::openbigbox('100%', 'left', '', $errormessage); &Header::openbox( 'Waiting', 1,); print < $Lang::tr{ $message END &Header::closebox(); &Header::closebigbox(); &Header::closepage(); } # ## A tiny function to perform a reload of the webpage after one second. # sub reload () { print "\n"; # Stop the script. exit; } # ## Private function to read-in and parse rules of a given rulefile. # ## The given file will be read, parsed and all valid rules will be stored by ID, ## message/description and it's state in the idsrules hash. # sub readrulesfile ($) { my $rulefile = shift; # Open rule file and read in contents open(RULEFILE, "$IDS::rulespath/$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 idsrules hash. $idsrules{$rulefile}{$sid}{'Description'} = $msg; # Grab status of the rule. Check if ruleline starts with a "dash". if ($line =~ /^\#/) { # If yes, the rule is disabled. $idsrules{$rulefile}{$sid}{'State'} = "off"; } else { # Otherwise the rule is enabled. $idsrules{$rulefile}{$sid}{'State'} = "on"; } } } } } # ## Function to get the used memory of a given process-id. # sub get_memory_usage($) { my ($pid) = @_; my $memory = 0; # Try to open the status file for the given process-id on the pseudo # file system proc. if (open(FILE, "/proc/$pid/status")) { # Loop through the entire file. while () { # Splitt current line content and store them into variables. my ($key, $value) = split(":", $_, 2); # Check if the current key is the one which contains the memory usage. # The wanted one is VmRSS which contains the Real-memory (resident set) # of the entire process. if ($key eq "VmRSS") { # Found the memory usage add it to the memory variable. $memory += $value; # Break the loop. last; } } # Close file handle. close(FILE); # Return memory usage. return $memory; } # If the file could not be open, return nothing. return; } # ## Function to generate the file which contains the home net information. # sub generate_home_net_file() { my %netsettings; # Read-in network settings. &General::readhash("${General::swroot}/ethernet/settings", \%netsettings); # Get available network zones. my @network_zones = &IDS::get_available_network_zones(); # Temporary array to store network address and prefix of the configured # networks. my @networks; # Loop through the array of available network zones. foreach my $zone (@network_zones) { # Skip the red network - It never can be part to the home_net! next if($zone eq "red"); # Convert current zone name into upper case. $zone = uc($zone); # Generate key to access the required data from the netsettings hash. my $zone_netaddress = $zone . "_NETADDRESS"; my $zone_netmask = $zone . "_NETMASK"; # Obtain the settings from the netsettings hash. my $netaddress = $netsettings{$zone_netaddress}; my $netmask = $netsettings{$zone_netmask}; # Convert the subnetmask into prefix notation. my $prefix = &Network::convert_netmask2prefix($netmask); # Generate full network string. my $network = join("/", $netaddress,$prefix); # Check if the network is valid. if(&Network::check_subnet($network)) { # Add the generated network to the array of networks. push(@networks, $network); } } # Format home net declaration. my $line = "\"\["; # Loop through the array of networks. foreach my $network (@networks) { # Add the network to the line. $line = "$line" . "$network"; # Check if the current network was the last in the array. if ($network eq $networks[-1]) { # Close the line. $line = "$line" . "\]\""; } else { # Add "," for the next network. $line = "$line" . "\,"; } } # Open file to store the addresses of the home net. open(FILE, ">$idshomenetfile") or die "Could not open $idshomenetfile. $!\n"; # Print yaml header. print FILE "%YAML 1.1\n"; print FILE "---\n\n"; # Print notice about autogenerated file. print FILE "#Autogenerated file. Any custom changes will be overwritten!\n"; # Print the generated and required HOME_NET declaration to the file. print FILE "HOME_NET:\t$line\n"; # Close file handle. close(FILE); } # ## Function to generate the rules file with whitelisted addresses. # sub GenerateIgnoreFile() { my %ignored = (); # SID range 1000000-1999999 Reserved for Local Use # Put your custom rules in this range to avoid conflicts my $sid = 1500000; # Read-in ignoredfile. &General::readhasharray($ignoredfile, \%ignored); # Open ignorefile for writing. open(FILE, ">$whitelistfile") or die "Could not write to $whitelistfile. $!\n"; # Config file header. print FILE "# Autogenerated file.\n"; print FILE "# All user modifications will be overwritten.\n\n"; # Add all user defined addresses to the whitelist. # # Check if the hash contains any elements. if (keys (%ignored)) { # Loop through the entire hash and write the host/network # and remark to the ignore file. while ( (my $key) = each %ignored) { my $address = $ignored{$key}[0]; my $remark = $ignored{$key}[1]; my $status = $ignored{$key}[2]; # Check if the status of the entry is "enabled". if ($status eq "enabled") { # Check if the address/network is valid. if ((&General::validip($address)) || (&General::validipandmask($address))) { # Write rule line to the file to pass any traffic from this IP print FILE "pass ip $address any -> any any (msg:\"pass all traffic from/to $address\"\; sid:$sid\;)\n"; # Increment sid. $sid++; } } } } close(FILE); } # ## Function to read-in the given enabled or disables sids file. # sub read_enabled_disabled_sids_file($) { my ($file) = @_; # Temporary hash to store the sids and their state. It will be # returned at the end of this function. my %temphash; # Open the given filename. open(FILE, "$file") or die "Could not open $file. $!\n"; # Loop through the file. while() { # Remove newlines. chomp $_; # Skip blank lines. next if ($_ =~ /^\s*$/); # Skip coments. next if ($_ =~ /^\#/); # Splitt line into sid and state part. my ($state, $sid) = split(" ", $_); # Skip line if the sid is not numeric. next unless ($sid =~ /\d+/ ); # Check if the sid was enabled. if ($state eq "enablesid") { # Add the sid and its state as enabled to the temporary hash. $temphash{$sid} = "enabled"; # Check if the sid was disabled. } elsif ($state eq "disablesid") { # Add the sid and its state as disabled to the temporary hash. $temphash{$sid} = "disabled"; # Invalid state - skip the current sid and state. } else { next; } } # Close filehandle. close(FILE); # Return the hash. return %temphash; } # ## Private function to convert a given rulefile to a category name. ## ( No file extension anymore and if the name contained a dot, it ## would be replaced by a underline sign.) # sub _rulefile_to_category($) { my ($filename) = @_; # Splitt the filename into single chunks and store them in a # temorary array. my @parts = split(/\./, $filename); # Return / Remove last element of the temporary array. # This removes the file extension. pop @parts; # Join together the single elements of the temporary array. # If these are more than one, use a "underline" for joining. my $category = join '_', @parts; # Return the converted filename. return $category; }