]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - html/cgi-bin/ids.cgi
ids.cgi: Add "Back" button to customize ruleset sub-page.
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / ids.cgi
CommitLineData
ac1cfefa 1#!/usr/bin/perl
70df8302
MT
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
e698090e 5# Copyright (C) 2007-2020 IPFire Team <info@ipfire.org> #
70df8302
MT
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
21
ac1cfefa
MT
22use strict;
23
24# enable only the following on debugging purpose
90c2e164
CS
25#use warnings;
26#use CGI::Carp 'fatalsToBrowser';
ac1cfefa 27
986e08d9 28require '/var/ipfire/general-functions.pl';
ac1cfefa
MT
29require "${General::swroot}/lang.pl";
30require "${General::swroot}/header.pl";
8dcebe53 31require "${General::swroot}/ids-functions.pl";
abffcc99 32require "${General::swroot}/network-functions.pl";
ac1cfefa 33
3e12c6e6
SS
34# Import ruleset providers file.
35require "$IDS::rulesetsourcesfile";
36
f2fdd0c1
CS
37my %color = ();
38my %mainsettings = ();
9d18656b 39my %idsrules = ();
1286e0d4 40my %idssettings=();
ea5c8eeb 41my %rulessettings=();
298723b9 42my %cgiparams=();
ac1cfefa 43my %checked=();
5a3e0dca 44my %selected=();
b7e29743 45my %ignored=();
0b89daee
SS
46
47# Read-in main settings, for language, theme and colors.
48&General::readhash("${General::swroot}/main/settings", \%mainsettings);
8186b372 49&General::readhash("/srv/web/ipfire/html/themes/ipfire/include/colors.txt", \%color);
0b89daee 50
1286e0d4
SS
51# Get the available network zones, based on the config type of the system and store
52# the list of zones in an array.
abffcc99 53my @network_zones = &Network::get_available_network_zones();
ac1cfefa 54
51b63b41
SS
55# Check if openvpn is started and add it to the array of network zones.
56if ( -e "/var/run/openvpn.pid") {
57 push(@network_zones, "ovpn");
58}
59
43263ea6
SS
60my $errormessage;
61
00512a5a 62# Create files if they does not exist yet.
b02e30fd 63&IDS::check_and_create_filelayout();
01ba4be4 64
99b372b5
SS
65# Hash which contains the colour code of a network zone.
66my %colourhash = (
67 'red' => $Header::colourred,
68 'green' => $Header::colourgreen,
69 'blue' => $Header::colourblue,
51b63b41
SS
70 'orange' => $Header::colourorange,
71 'ovpn' => $Header::colourovpn
99b372b5
SS
72);
73
ac1cfefa
MT
74&Header::showhttpheaders();
75
298723b9
SS
76#Get GUI values
77&Header::getcgihash(\%cgiparams);
ac1cfefa 78
b7e29743
SS
79## Add/edit an entry to the ignore file.
80#
81if (($cgiparams{'WHITELIST'} eq $Lang::tr{'add'}) || ($cgiparams{'WHITELIST'} eq $Lang::tr{'update'})) {
82
83 # Check if any input has been performed.
84 if ($cgiparams{'IGNORE_ENTRY_ADDRESS'} ne '') {
85
86 # Check if the given input is no valid IP-address or IP-address with subnet, display an error message.
87 if ((!&General::validip($cgiparams{'IGNORE_ENTRY_ADDRESS'})) && (!&General::validipandmask($cgiparams{'IGNORE_ENTRY_ADDRESS'}))) {
88 $errormessage = "$Lang::tr{'guardian invalid address or subnet'}";
89 }
90 } else {
91 $errormessage = "$Lang::tr{'guardian empty input'}";
92 }
93
94 # Go further if there was no error.
95 if ($errormessage eq '') {
96 my %ignored = ();
97 my $id;
98 my $status;
99
100 # Assign hash values.
101 my $new_entry_address = $cgiparams{'IGNORE_ENTRY_ADDRESS'};
102 my $new_entry_remark = $cgiparams{'IGNORE_ENTRY_REMARK'};
103
104 # Read-in ignoredfile.
b02e30fd 105 &General::readhasharray($IDS::ignored_file, \%ignored);
b7e29743
SS
106
107 # Check if we should edit an existing entry and got an ID.
108 if (($cgiparams{'WHITELIST'} eq $Lang::tr{'update'}) && ($cgiparams{'ID'})) {
109 # Assin the provided id.
110 $id = $cgiparams{'ID'};
111
112 # Undef the given ID.
113 undef($cgiparams{'ID'});
114
115 # Grab the configured status of the corresponding entry.
116 $status = $ignored{$id}[2];
117 } else {
118 # Each newly added entry automatically should be enabled.
119 $status = "enabled";
120
121 # Generate the ID for the new entry.
122 #
123 # Sort the keys by their ID and store them in an array.
124 my @keys = sort { $a <=> $b } keys %ignored;
125
126 # Reverse the key array.
127 my @reversed = reverse(@keys);
128
129 # Obtain the last used id.
130 my $last_id = @reversed[0];
131
132 # Increase the last id by one and use it as id for the new entry.
133 $id = ++$last_id;
134 }
135
136 # Add/Modify the entry to/in the ignored hash.
137 $ignored{$id} = ["$new_entry_address", "$new_entry_remark", "$status"];
138
139 # Write the changed ignored hash to the ignored file.
b02e30fd 140 &General::writehasharray($IDS::ignored_file, \%ignored);
b7e29743
SS
141
142 # Regenerate the ignore file.
9283e9b9 143 &IDS::generate_ignore_file();
b7e29743
SS
144 }
145
146 # Check if the IDS is running.
147 if(&IDS::ids_is_running()) {
148 # Call suricatactrl to perform a reload.
149 &IDS::call_suricatactrl("reload");
150 }
151
152## Toggle Enabled/Disabled for an existing entry on the ignore list.
153#
154
155} elsif ($cgiparams{'WHITELIST'} eq $Lang::tr{'toggle enable disable'}) {
156 my %ignored = ();
157
158 # Only go further, if an ID has been passed.
159 if ($cgiparams{'ID'}) {
160 # Assign the given ID.
161 my $id = $cgiparams{'ID'};
162
163 # Undef the given ID.
164 undef($cgiparams{'ID'});
165
166 # Read-in ignoredfile.
b02e30fd 167 &General::readhasharray($IDS::ignored_file, \%ignored);
b7e29743
SS
168
169 # Grab the configured status of the corresponding entry.
170 my $status = $ignored{$id}[2];
171
172 # Switch the status.
173 if ($status eq "disabled") {
174 $status = "enabled";
175 } else {
176 $status = "disabled";
177 }
178
179 # Modify the status of the existing entry.
180 $ignored{$id} = ["$ignored{$id}[0]", "$ignored{$id}[1]", "$status"];
181
182 # Write the changed ignored hash to the ignored file.
b02e30fd 183 &General::writehasharray($IDS::ignored_file, \%ignored);
b7e29743
SS
184
185 # Regenerate the ignore file.
9283e9b9 186 &IDS::generate_ignore_file();
b7e29743
SS
187
188 # Check if the IDS is running.
189 if(&IDS::ids_is_running()) {
190 # Call suricatactrl to perform a reload.
191 &IDS::call_suricatactrl("reload");
192 }
193 }
194
195## Remove entry from ignore list.
196#
197} elsif ($cgiparams{'WHITELIST'} eq $Lang::tr{'remove'}) {
198 my %ignored = ();
199
200 # Read-in ignoredfile.
b02e30fd 201 &General::readhasharray($IDS::ignored_file, \%ignored);
b7e29743
SS
202
203 # Drop entry from the hash.
204 delete($ignored{$cgiparams{'ID'}});
205
206 # Undef the given ID.
207 undef($cgiparams{'ID'});
208
209 # Write the changed ignored hash to the ignored file.
b02e30fd 210 &General::writehasharray($IDS::ignored_file, \%ignored);
b7e29743
SS
211
212 # Regenerate the ignore file.
9283e9b9 213 &IDS::generate_ignore_file();
b7e29743
SS
214
215 # Check if the IDS is running.
216 if(&IDS::ids_is_running()) {
217 # Call suricatactrl to perform a reload.
218 &IDS::call_suricatactrl("reload");
219 }
220}
221
9074e3d7
SS
222# Check if the page is locked, in this case, the ids_page_lock_file exists.
223if (-e $IDS::ids_page_lock_file) {
224 # Lock the webpage and print notice about autoupgrade of the ruleset
225 # is in progess.
226 &working_notice("$Lang::tr{'ids ruleset autoupdate in progress'}");
227
228 # Loop and check if the file still exists.
229 while(-e $IDS::ids_page_lock_file) {
230 # Sleep for a second and re-check.
231 sleep 1;
232 }
233
234 # Page has been unlocked, perform a reload.
235 &reload();
236}
237
3983aebd
SS
238# Check if any error has been stored.
239if (-e $IDS::storederrorfile) {
240 # Open file to read in the stored error message.
241 open(FILE, "<$IDS::storederrorfile") or die "Could not open $IDS::storederrorfile. $!\n";
242
243 # Read the stored error message.
244 $errormessage = <FILE>;
245
246 # Close file.
247 close (FILE);
248
249 # Delete the file, which is now not longer required.
250 unlink($IDS::storederrorfile);
251}
252
a468b62b
SS
253# Gather ruleset details.
254if ($cgiparams{'RULESET'}) {
255 ## Grab all available rules and store them in the idsrules hash.
256 #
257 # Open rules directory and do a directory listing.
258 opendir(DIR, $IDS::rulespath) or die $!;
259 # Loop through the direcory.
260 while (my $file = readdir(DIR)) {
422204ff 261
a468b62b
SS
262 # We only want files.
263 next unless (-f "$IDS::rulespath/$file");
422204ff 264
a468b62b
SS
265 # Ignore empty files.
266 next if (-z "$IDS::rulespath/$file");
422204ff 267
a468b62b
SS
268 # Use a regular expression to find files ending in .rules
269 next unless ($file =~ m/\.rules$/);
422204ff 270
a468b62b
SS
271 # Ignore files which are not read-able.
272 next unless (-R "$IDS::rulespath/$file");
395e3b90 273
a468b62b
SS
274 # Skip whitelist rules file.
275 next if( $file eq "whitelist.rules");
b7e29743 276
a468b62b
SS
277 # Call subfunction to read-in rulefile and add rules to
278 # the idsrules hash.
279 &readrulesfile("$file");
280 }
395e3b90 281
a468b62b 282 closedir(DIR);
395e3b90 283
a468b62b
SS
284 # Gather used rulefiles.
285 #
286 # Check if the file for activated rulefiles is not empty.
287 if(-f $IDS::used_rulefiles_file) {
288 # Open the file for used rulefile and read-in content.
289 open(FILE, $IDS::used_rulefiles_file) or die "Could not open $IDS::used_rulefiles_file. $!\n";
290
291 # Read-in content.
292 my @lines = <FILE>;
293
294 # Close file.
295 close(FILE);
296
297 # Loop through the array.
298 foreach my $line (@lines) {
299 # Remove newlines.
300 chomp($line);
301
302 # Skip comments.
303 next if ($line =~ /\#/);
304
305 # Skip blank lines.
306 next if ($line =~ /^\s*$/);
307
308 # Gather rule sid and message from the ruleline.
309 if ($line =~ /.*- (.*)/) {
310 my $rulefile = $1;
311
312 # Check if the current rulefile exists in the %idsrules hash.
313 # If not, the file probably does not exist anymore or contains
314 # no rules.
315 if($idsrules{$rulefile}) {
316 # Add the rulefile state to the %idsrules hash.
317 $idsrules{$rulefile}{'Rulefile'}{'State'} = "on";
318 }
43ab7d9c 319 }
e5738079
SS
320 }
321 }
322}
323
ea5c8eeb
SS
324# Save ruleset configuration.
325if ($cgiparams{'RULESET'} eq $Lang::tr{'save'}) {
326 my %oldsettings;
327
328 # Read-in current (old) IDS settings.
b02e30fd 329 &General::readhash("$IDS::rules_settings_file", \%oldsettings);
ea5c8eeb
SS
330
331 # Prevent form name from been stored in conf file.
332 delete $cgiparams{'RULESET'};
333
613f58fb 334 # Check if the choosen vendor (URL) requires an subscription/oinkcode.
3e12c6e6 335 if ($IDS::Ruleset::Providers{$cgiparams{'RULES'}}{'requires_subscription'} eq "True") {
613f58fb
SS
336 # Check if an subscription/oinkcode has been provided.
337 if ($cgiparams{'OINKCODE'}) {
338 # Check if the oinkcode contains unallowed chars.
339 unless ($cgiparams{'OINKCODE'} =~ /^[a-z0-9]+$/) {
340 $errormessage = $Lang::tr{'invalid input for oink code'};
341 }
342 } else {
343 # Print an error message, that an subsription/oinkcode is required for this
344 # vendor.
345 $errormessage = $Lang::tr{'ids oinkcode required'};
ea5c8eeb
SS
346 }
347 }
348
349 # Go on if there are no error messages.
350 if (!$errormessage) {
351 # Store settings into settings file.
b02e30fd 352 &General::writehash("$IDS::rules_settings_file", \%cgiparams);
ea5c8eeb 353
f644a167
SS
354 # Check if the the automatic rule update hass been touched.
355 if($cgiparams{'AUTOUPDATE_INTERVAL'} ne $oldsettings{'AUTOUPDATE_INTERVAL'}) {
356 # Call suricatactrl to set the new interval.
357 &IDS::call_suricatactrl("cron", $cgiparams{'AUTOUPDATE_INTERVAL'});
5fd2e9d6
SS
358 }
359
f644a167
SS
360 # Check if a ruleset is present - if not or the source has been changed download it.
361 if((! %idsrules) || ($oldsettings{'RULES'} ne $cgiparams{'RULES'})) {
362 # Check if the red device is active.
363 unless (-e "${General::swroot}/red/active") {
364 $errormessage = "$Lang::tr{'could not download latest updates'} - $Lang::tr{'system is offline'}";
5fd2e9d6
SS
365 }
366
a5ba473c 367 # Check if enough free disk space is availabe.
f644a167
SS
368 if(&IDS::checkdiskspace()) {
369 $errormessage = "$Lang::tr{'not enough disk space'}";
97870bf2
SS
370 }
371
f644a167
SS
372 # Check if any errors happend.
373 unless ($errormessage) {
374 # Lock the webpage and print notice about downloading
375 # a new ruleset.
5bd8940d 376 &working_notice("$Lang::tr{'ids working'}");
f644a167 377
a5ba473c 378 # Write the modify sid's file and pass the taken ruleaction.
81bae51f 379 &IDS::write_modify_sids_file();
a5ba473c 380
f644a167
SS
381 # Call subfunction to download the ruleset.
382 if(&IDS::downloadruleset()) {
383 $errormessage = $Lang::tr{'could not download latest updates'};
384
385 # Call function to store the errormessage.
386 &IDS::_store_error_message($errormessage);
387 } else {
388 # Call subfunction to launch oinkmaster.
389 &IDS::oinkmaster();
390 }
391
392 # Check if the IDS is running.
393 if(&IDS::ids_is_running()) {
394 # Call suricatactrl to stop the IDS - because of the changed
395 # ruleset - the use has to configure it before suricata can be
396 # used again.
397 &IDS::call_suricatactrl("stop");
398 }
399
400 # Perform a reload of the page.
401 &reload();
402 }
5fd2e9d6
SS
403 }
404 }
405
298723b9 406# Save ruleset.
ee7fe87e 407} elsif ($cgiparams{'RULESET'} eq $Lang::tr{'ids apply'}) {
d2212836 408 # Arrays to store which rulefiles have been enabled and will be used.
e5738079 409 my @enabled_rulefiles;
298723b9 410
d2212836
SS
411 # Hash to store the user-enabled and disabled sids.
412 my %enabled_disabled_sids;
413
af8e5145
SS
414 # Store if a restart of suricata is required.
415 my $suricata_restart_required;
416
9d18656b
SS
417 # Loop through the hash of idsrules.
418 foreach my $rulefile(keys %idsrules) {
1622e5c1
SS
419 # Check if the state of the rulefile has been changed.
420 unless ($cgiparams{$rulefile} eq $idsrules{$rulefile}{'Rulefile'}{'State'}) {
421 # A restart of suricata is required to apply the changes of the used rulefiles.
422 $suricata_restart_required = 1;
423 }
424
e5738079
SS
425 # Check if the rulefile is enabled.
426 if ($cgiparams{$rulefile} eq "on") {
427 # Add rulefile to the array of enabled rulefiles.
428 push(@enabled_rulefiles, $rulefile);
b65b5ef3
SS
429
430 # Drop item from cgiparams hash.
431 delete $cgiparams{$rulefile};
e5738079 432 }
466c6779 433 }
e5738079 434
d2212836
SS
435 # Read-in the files for enabled/disabled sids.
436 # This will be done by calling the read_enabled_disabled_sids_file function two times
437 # and merge the returned hashes together into the enabled_disabled_sids hash.
438 %enabled_disabled_sids = (
b02e30fd
SS
439 &read_enabled_disabled_sids_file($IDS::disabled_sids_file),
440 &read_enabled_disabled_sids_file($IDS::enabled_sids_file));
d2212836 441
9d18656b
SS
442 # Loop through the hash of idsrules.
443 foreach my $rulefile (keys %idsrules) {
298723b9 444 # Loop through the single rules of the rulefile.
9d18656b 445 foreach my $sid (keys %{$idsrules{$rulefile}}) {
c51a044a
SS
446 # Skip the current sid if it is not numeric.
447 next unless ($sid =~ /\d+/ );
448
298723b9
SS
449 # Check if there exists a key in the cgiparams hash for this sid.
450 if (exists($cgiparams{$sid})) {
451 # Look if the rule is disabled.
9d18656b 452 if ($idsrules{$rulefile}{$sid}{'State'} eq "off") {
298723b9
SS
453 # Check if the state has been set to 'on'.
454 if ($cgiparams{$sid} eq "on") {
d2212836
SS
455 # Add/Modify the sid to/in the enabled_disabled_sids hash.
456 $enabled_disabled_sids{$sid} = "enabled";
298723b9
SS
457
458 # Drop item from cgiparams hash.
60333473 459 delete $cgiparams{$rulefile}{$sid};
298723b9
SS
460 }
461 }
462 } else {
463 # Look if the rule is enabled.
9d18656b 464 if ($idsrules{$rulefile}{$sid}{'State'} eq "on") {
298723b9
SS
465 # Check if the state is 'on' and should be disabled.
466 # In this case there is no entry
467 # for the sid in the cgiparams hash.
d2212836
SS
468 # Add/Modify it to/in the enabled_disabled_sids hash.
469 $enabled_disabled_sids{$sid} = "disabled";
298723b9
SS
470
471 # Drop item from cgiparams hash.
60333473 472 delete $cgiparams{$rulefile}{$sid};
298723b9
SS
473 }
474 }
475 }
476 }
477
37659505 478 # Open enabled sid's file for writing.
b02e30fd 479 open(ENABLED_FILE, ">$IDS::enabled_sids_file") or die "Could not write to $IDS::enabled_sids_file. $!\n";
37659505
SS
480
481 # Open disabled sid's file for writing.
b02e30fd 482 open(DISABLED_FILE, ">$IDS::disabled_sids_file") or die "Could not write to $IDS::disabled_sids_file. $!\n";
d2212836
SS
483
484 # Write header to the files.
485 print ENABLED_FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
486 print DISABLED_FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
487
488 # Check if the hash for enabled/disabled files contains any entries.
489 if (%enabled_disabled_sids) {
490 # Loop through the hash.
491 foreach my $sid (keys %enabled_disabled_sids) {
492 # Check if the sid is enabled.
493 if ($enabled_disabled_sids{$sid} eq "enabled") {
494 # Print the sid to the enabled_sids file.
495 print ENABLED_FILE "enablesid $sid\n";
496 # Check if the sid is disabled.
497 } elsif ($enabled_disabled_sids{$sid} eq "disabled") {
498 # Print the sid to the disabled_sids file.
499 print DISABLED_FILE "disablesid $sid\n";
500 # Something strange happende - skip the current sid.
501 } else {
502 next;
503 }
37659505
SS
504 }
505 }
298723b9 506
d2212836
SS
507 # Close file for enabled_sids after writing.
508 close(ENABLED_FILE);
509
510 # Close file for disabled_sids after writing.
511 close(DISABLED_FILE);
e5738079 512
b02e30fd
SS
513 # Call function to generate and write the used rulefiles file.
514 &IDS::write_used_rulefiles_file(@enabled_rulefiles);
52599865 515
27760092 516 # Lock the webpage and print message.
5bd8940d 517 &working_notice("$Lang::tr{'ids apply ruleset changes'}");
27760092 518
52599865 519 # Call oinkmaster to alter the ruleset.
27760092
SS
520 &IDS::oinkmaster();
521
e2e7880d 522 # Check if the IDS is running.
5a28e721 523 if(&IDS::ids_is_running()) {
af8e5145
SS
524 # Check if a restart of suricata is required.
525 if ($suricata_restart_required) {
526 # Call suricatactrl to perform the restart.
527 &IDS::call_suricatactrl("restart");
528 } else {
529 # Call suricatactrl to perform a reload.
530 &IDS::call_suricatactrl("reload");
531 }
e2e7880d
SS
532 }
533
27760092
SS
534 # Reload page.
535 &reload();
52599865
SS
536
537# Download new ruleset.
5fd2e9d6 538} elsif ($cgiparams{'RULESET'} eq $Lang::tr{'update ruleset'}) {
43263ea6
SS
539 # Check if the red device is active.
540 unless (-e "${General::swroot}/red/active") {
013274d7 541 $errormessage = "$Lang::tr{'could not download latest updates'} - $Lang::tr{'system is offline'}";
43263ea6 542 }
52599865 543
3983aebd 544 # Check if enought free disk space is availabe.
434001d0
SS
545 if(&IDS::checkdiskspace()) {
546 $errormessage = "$Lang::tr{'not enough disk space'}";
547 }
52599865 548
43263ea6
SS
549 # Check if any errors happend.
550 unless ($errormessage) {
27760092
SS
551 # Lock the webpage and print notice about downloading
552 # a new ruleset.
5bd8940d 553 &working_notice("$Lang::tr{'ids download new ruleset'}");
3983aebd 554
43263ea6 555 # Call subfunction to download the ruleset.
434001d0
SS
556 if(&IDS::downloadruleset()) {
557 $errormessage = $Lang::tr{'could not download latest updates'};
8f22237b 558
3983aebd 559 # Call function to store the errormessage.
434001d0 560 &IDS::_store_error_message($errormessage);
52599865 561
3983aebd
SS
562 # Preform a reload of the page.
563 &reload();
564 } else {
565 # Call subfunction to launch oinkmaster.
566 &IDS::oinkmaster();
43263ea6 567
e2e7880d 568 # Check if the IDS is running.
5a28e721 569 if(&IDS::ids_is_running()) {
e2e7880d
SS
570 # Call suricatactrl to perform a reload.
571 &IDS::call_suricatactrl("reload");
572 }
573
3983aebd
SS
574 # Perform a reload of the page.
575 &reload();
576 }
52599865 577 }
5bd8940d 578# Save IDS settings.
e0bfd338 579} elsif ($cgiparams{'IDS'} eq $Lang::tr{'save'}) {
bbb6efae
SS
580 my %oldidssettings;
581 my $reload_page;
ebdd0f9a 582 my $monitored_zones = 0;
bbb6efae
SS
583
584 # Read-in current (old) IDS settings.
b02e30fd 585 &General::readhash("$IDS::ids_settings_file", \%oldidssettings);
bbb6efae 586
a232b58c 587 # Prevent form name from been stored in conf file.
e0bfd338 588 delete $cgiparams{'IDS'};
a232b58c 589
ebdd0f9a
SS
590 # Check if the IDS should be enabled.
591 if ($cgiparams{'ENABLE_IDS'} eq "on") {
592 # Check if any ruleset is available. Otherwise abort and display an error.
593 unless(%idsrules) {
594 $errormessage = $Lang::tr{'ids no ruleset available'};
595 }
596
597 # Loop through the array of available interfaces.
598 foreach my $zone (@network_zones) {
599 # Convert interface name into upper case.
600 my $zone_upper = uc($zone);
601
602 # Check if the IDS is enabled for this interaces.
603 if ($cgiparams{"ENABLE_IDS_$zone_upper"}) {
604 # Increase count.
605 $monitored_zones++;
606 }
607 }
608
609 # Check if at least one zone should be monitored, or show an error.
610 unless ($monitored_zones >= 1) {
611 $errormessage = $Lang::tr{'ids no network zone'};
612 }
613 }
614
a232b58c
SS
615 # Go on if there are no error messages.
616 if (!$errormessage) {
617 # Store settings into settings file.
b02e30fd 618 &General::writehash("$IDS::ids_settings_file", \%cgiparams);
a9a91e5f 619 }
8d2f6b0b
SS
620
621 # Generate file to store the home net.
b02e30fd 622 &IDS::generate_home_net_file();
e2e7880d 623
a40ee6b9
SS
624 # Generate file to the store the DNS servers.
625 &IDS::generate_dns_servers_file();
626
e698090e
SS
627 # Generate file to store the HTTP ports.
628 &IDS::generate_http_ports_file();
629
74cc8f5a 630 # Write the modify sid's file and pass the taken ruleaction.
81bae51f 631 &IDS::write_modify_sids_file();
bbb6efae 632
01d02eb6
SS
633 # Check if "MONITOR_TRAFFIC_ONLY" has been changed.
634 if($cgiparams{'MONITOR_TRAFFIC_ONLY'} ne $oldidssettings{'MONITOR_TRAFFIC_ONLY'}) {
bbb6efae
SS
635 # Check if a ruleset exists.
636 if (%idsrules) {
637 # Lock the webpage and print message.
5bd8940d 638 &working_notice("$Lang::tr{'ids working'}");
bbb6efae
SS
639
640 # Call oinkmaster to alter the ruleset.
641 &IDS::oinkmaster();
642
643 # Set reload_page to "True".
644 $reload_page="True";
645 }
646 }
647
e2e7880d
SS
648 # Check if the IDS currently is running.
649 if(&IDS::ids_is_running()) {
650 # Check if ENABLE_IDS is set to on.
651 if($cgiparams{'ENABLE_IDS'} eq "on") {
652 # Call suricatactrl to perform a reload of suricata.
653 &IDS::call_suricatactrl("reload");
654 } else {
655 # Call suricatactrl to stop suricata.
656 &IDS::call_suricatactrl("stop");
657 }
658 } else {
659 # Call suricatactrl to start suricata.
660 &IDS::call_suricatactrl("start");
661 }
bbb6efae
SS
662
663 # Check if the page should be reloaded.
664 if ($reload_page) {
665 # Perform a reload of the page.
666 &reload();
667 }
ac1cfefa
MT
668}
669
ac1cfefa
MT
670&Header::openpage($Lang::tr{'intrusion detection system'}, 1, '');
671
2bbe6ede 672&Header::openbigbox('100%', 'left', '', $errormessage);
e0cec9fe 673
2bbe6ede 674&show_display_error_message();
0d34a479 675
2bbe6ede
SS
676if ($cgiparams{'RULESET'} eq "$Lang::tr{'ids customize ruleset'}" ) {
677 &show_customize_ruleset();
678} else {
679 &show_mainpage();
680}
029b8ed2 681
2bbe6ede
SS
682&Header::closebigbox();
683&Header::closepage();
e0cec9fe 684
2bbe6ede
SS
685#
686## Tiny function to show if a error message happened.
687#
688sub show_display_error_message() {
689 if ($errormessage) {
690 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
691 print "<class name='base'>$errormessage\n";
692 print "&nbsp;</class>\n";
693 &Header::closebox();
694 }
695}
e0cec9fe 696
2bbe6ede
SS
697#
698## Function to display the main IDS page.
699#
700sub show_mainpage() {
701 # Read-in idssettings and rulesetsettings
702 &General::readhash("$IDS::ids_settings_file", \%idssettings);
703 &General::readhash("$IDS::rules_settings_file", \%rulessettings);
704
705 # If no autoupdate intervall has been configured yet, set default value.
706 unless(exists($rulessettings{'AUTOUPDATE_INTERVAL'})) {
707 # Set default to "weekly".
708 $rulessettings{'AUTOUPDATE_INTERVAL'} = 'weekly';
17726644 709 }
2bbe6ede
SS
710
711 # Read-in ignored hosts.
712 &General::readhasharray("$IDS::settingsdir/ignored", \%ignored);
713
714 $checked{'ENABLE_IDS'}{'off'} = '';
715 $checked{'ENABLE_IDS'}{'on'} = '';
716 $checked{'ENABLE_IDS'}{$idssettings{'ENABLE_IDS'}} = "checked='checked'";
717 $checked{'MONITOR_TRAFFIC_ONLY'}{'off'} = '';
718 $checked{'MONITOR_TRAFFIC_ONLY'}{'on'} = '';
719 $checked{'MONITOR_TRAFFIC_ONLY'}{$idssettings{'MONITOR_TRAFFIC_ONLY'}} = "checked='checked'";
720 $selected{'RULES'}{'nothing'} = '';
721 $selected{'RULES'}{$rulessettings{'RULES'}} = "selected='selected'";
722 $selected{'AUTOUPDATE_INTERVAL'}{'off'} = '';
723 $selected{'AUTOUPDATE_INTERVAL'}{'daily'} = '';
724 $selected{'AUTOUPDATE_INTERVAL'}{'weekly'} = '';
725 $selected{'AUTOUPDATE_INTERVAL'}{$rulessettings{'AUTOUPDATE_INTERVAL'}} = "selected='selected'";
726
727 ### Java Script ###
728 print "<script>\n";
729print <<END
730 // Java Script function to show/hide the text input field for
731 // Oinkcode/Subscription code.
732 var update_code = function() {
733 if(\$('#RULES').val() == 'registered') {
734 \$('#code').show();
735 } else if(\$('#RULES').val() == 'subscripted') {
736 \$('#code').show();
737 } else if(\$('#RULES').val() == 'emerging_pro') {
738 \$('#code').show();
739 } else {
740 \$('#code').hide();
741 }
742 };
743
744 // JQuery function to call corresponding function when
745 // the ruleset is changed or the page is loaded for showing/hiding
746 // the code area.
747 \$(document).ready(function() {
748 \$('#RULES').change(update_code);
749 update_code();
750 });
751 </script>
17726644
SS
752END
753;
754
2bbe6ede
SS
755 # Draw current state of the IDS
756 &Header::openbox('100%', 'left', $Lang::tr{'intrusion detection system'});
1504a375 757
2bbe6ede
SS
758 # Check if the IDS is running and obtain the process-id.
759 my $pid = &IDS::ids_is_running();
87660964 760
2bbe6ede
SS
761 # Display some useful information, if suricata daemon is running.
762 if ($pid) {
763 # Gather used memory.
764 my $memory = &get_memory_usage($pid);
87660964 765
2bbe6ede
SS
766 print <<END;
767 <table width='95%' cellspacing='0' class='tbl'>
768 <tr>
769 <th bgcolor='$color{'color20'}' colspan='3' align='left'><strong>$Lang::tr{'intrusion detection'}</strong></th>
770 </tr>
87660964 771
2bbe6ede
SS
772 <tr>
773 <td class='base'>$Lang::tr{'guardian daemon'}</td>
774 <td align='center' colspan='2' width='75%' bgcolor='${Header::colourgreen}'><font color='white'><strong>$Lang::tr{'running'}</strong></font></td>
775 </tr>
87660964 776
2bbe6ede
SS
777 <tr>
778 <td class='base'></td>
779 <td bgcolor='$color{'color20'}' align='center'><strong>PID</strong></td>
780 <td bgcolor='$color{'color20'}' align='center'><strong>$Lang::tr{'memory'}</strong></td>
781 </tr>
87660964 782
2bbe6ede
SS
783 <tr>
784 <td class='base'></td>
785 <td bgcolor='$color{'color22'}' align='center'>$pid</td>
786 <td bgcolor='$color{'color22'}' align='center'>$memory KB</td>
787 </tr>
788 </table>
87660964 789END
2bbe6ede
SS
790 } else {
791 # Otherwise display a hint that the service is not launched.
792 print <<END;
793 <table width='95%' cellspacing='0' class='tbl'>
794 <tr>
795 <th bgcolor='$color{'color20'}' colspan='3' align='left'><strong>$Lang::tr{'intrusion detection'}</strong></th>
796 </tr>
87660964 797
2bbe6ede
SS
798 <tr>
799 <td class='base'>$Lang::tr{'guardian daemon'}</td>
800 <td align='center' width='75%' bgcolor='${Header::colourred}'><font color='white'><strong>$Lang::tr{'stopped'}</strong></font></td>
801 </tr>
802 </table>
87660964 803END
2bbe6ede 804 }
87660964 805
2bbe6ede
SS
806 # Only show this area, if a ruleset is present.
807 if (%idsrules) {
674912fc 808
2bbe6ede 809print <<END
674912fc 810
2bbe6ede 811 <br><br><h2>$Lang::tr{'settings'}</h2>
1286e0d4 812
2bbe6ede
SS
813 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
814 <table width='100%' border='0'>
815 <tr>
816 <td class='base' colspan='2'>
817 <input type='checkbox' name='ENABLE_IDS' $checked{'ENABLE_IDS'}{'on'}>&nbsp;$Lang::tr{'ids enable'}
818 </td>
cf02bf2f 819
2bbe6ede
SS
820 <td class='base' colspan='2'>
821 <input type='checkbox' name='MONITOR_TRAFFIC_ONLY' $checked{'MONITOR_TRAFFIC_ONLY'}{'on'}>&nbsp;$Lang::tr{'ids monitor traffic only'}
822 </td>
823 </tr>
1504a375 824
2bbe6ede
SS
825 <tr>
826 <td><br><br></td>
827 <td><br><br></td>
828 <td><br><br></td>
829 <td><br><br></td>
830 </tr>
a4ccfcbb 831
2bbe6ede
SS
832 <tr>
833 <td colspan='4'><b>$Lang::tr{'ids monitored interfaces'}</b><br></td>
834 </tr>
a4ccfcbb 835
2bbe6ede 836 <tr>
ac1cfefa
MT
837END
838;
1504a375 839
2bbe6ede
SS
840 # Loop through the array of available networks and print config options.
841 foreach my $zone (@network_zones) {
842 my $checked_input;
843 my $checked_forward;
1504a375 844
2bbe6ede
SS
845 # Convert current zone name to upper case.
846 my $zone_upper = uc($zone);
1504a375 847
2bbe6ede
SS
848 # Set zone name.
849 my $zone_name = $zone;
53817b89 850
2bbe6ede
SS
851 # Dirty hack to get the correct language string for the red zone.
852 if ($zone eq "red") {
853 $zone_name = "red1";
854 }
53817b89 855
2bbe6ede
SS
856 # Grab checkbox status from settings hash.
857 if ($idssettings{"ENABLE_IDS_$zone_upper"} eq "on") {
858 $checked_input = "checked = 'checked'";
859 }
1504a375 860
2bbe6ede
SS
861 print "<td class='base' width='20%'>\n";
862 print "<input type='checkbox' name='ENABLE_IDS_$zone_upper' $checked_input>\n";
863 print "&nbsp;$Lang::tr{'enabled on'}<font color='$colourhash{$zone}'> $Lang::tr{$zone_name}</font>\n";
864 print "</td>\n";
865 }
1b73b07e 866
ac1cfefa 867print <<END
2bbe6ede
SS
868 </tr>
869 </table>
1504a375 870
2bbe6ede 871 <br><br>
ea5c8eeb 872
2bbe6ede
SS
873 <table width='100%'>
874 <tr>
875 <td align='right'><input type='submit' name='IDS' value='$Lang::tr{'save'}' /></td>
876 </tr>
877 </table>
878 </form>
ea5c8eeb
SS
879END
880;
881
2bbe6ede 882 }
cf02bf2f 883
2bbe6ede 884 &Header::closebox();
ea5c8eeb 885
2bbe6ede
SS
886 # Draw elements for ruleset configuration.
887 &Header::openbox('100%', 'center', $Lang::tr{'ids ruleset settings'});
ea5c8eeb 888
ea5c8eeb 889print <<END
2bbe6ede
SS
890 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
891 <table width='100%' border='0'>
892 <tr>
893 <td><b>$Lang::tr{'ids rules update'}</b></td>
894 <td><b>$Lang::tr{'ids automatic rules update'}</b></td>
895 </tr>
1504a375 896
2bbe6ede
SS
897 <tr>
898 <td><select name='RULES' id='RULES'>
3e12c6e6
SS
899END
900;
2bbe6ede
SS
901 # Get all available ruleset providers.
902 my @ruleset_providers = &IDS::get_ruleset_providers();
3e12c6e6 903
2bbe6ede
SS
904 # Loop throgh the list of providers.
905 foreach my $provider (@ruleset_providers) {
906 # Call get_provider_name function to obtain the provider name.
907 my $option_string = &get_provider_name($provider);
3e12c6e6 908
2bbe6ede
SS
909 # Print option.
910 print "<option value='$provider' $selected{'RULES'}{$provider}>$option_string</option>\n";
911 }
3e12c6e6 912print <<END;
eadad5fd 913 </select>
2bbe6ede 914 </td>
1504a375 915
2bbe6ede
SS
916 <td>
917 <select name='AUTOUPDATE_INTERVAL'>
918 <option value='off' $selected{'AUTOUPDATE_INTERVAL'}{'off'} >- $Lang::tr{'Disabled'} -</option>
919 <option value='daily' $selected{'AUTOUPDATE_INTERVAL'}{'daily'} >$Lang::tr{'Daily'}</option>
920 <option value='weekly' $selected{'AUTOUPDATE_INTERVAL'}{'weekly'} >$Lang::tr{'Weekly'}</option>
921 </select>
922 </td>
923 </tr>
1504a375 924
2bbe6ede
SS
925 <tr>
926 <td colspan='2'><br><br></td>
927 </tr>
1504a375 928
2bbe6ede
SS
929 <tr style='display:none' id='code'>
930 <td colspan='2'>Oinkcode:&nbsp;<input type='text' size='40' name='OINKCODE' value='$rulessettings{'OINKCODE'}'></td>
931 </tr>
932
933 <tr>
934 <td>&nbsp;</td>
1504a375 935
2bbe6ede 936 <td align='right'>
ea5c8eeb
SS
937END
938;
2bbe6ede
SS
939 # Show the "Update Ruleset"-Button only if a ruleset has been downloaded yet and automatic updates are disabled.
940 if ((%idsrules) && ($rulessettings{'AUTOUPDATE_INTERVAL'} eq "off")) {
941 # Display button to update the ruleset.
942 print"<input type='submit' name='RULESET' value='$Lang::tr{'update ruleset'}'>\n";
943 }
ea5c8eeb 944print <<END;
2bbe6ede
SS
945 <input type='submit' name='RULESET' value='$Lang::tr{'ids customize ruleset'}'>
946 <input type='submit' name='RULESET' value='$Lang::tr{'save'}'>
947 </td>
1504a375 948
2bbe6ede
SS
949 </tr>
950 </table>
951 </form>
ac1cfefa
MT
952END
953;
954
2bbe6ede 955 &Header::closebox();
fbfdb241 956
2bbe6ede
SS
957 #
958 # Whitelist / Ignorelist
959 #
960 &Header::openbox('100%', 'center', $Lang::tr{'ids ignored hosts'});
b7e29743 961
2bbe6ede 962 print <<END;
b7e29743
SS
963 <table width='100%'>
964 <tr>
965 <td class='base' bgcolor='$color{'color20'}'><b>$Lang::tr{'ip address'}</b></td>
966 <td class='base' bgcolor='$color{'color20'}'><b>$Lang::tr{'remark'}</b></td>
967 <td class='base' colspan='3' bgcolor='$color{'color20'}'></td>
968 </tr>
969END
970 # Check if some hosts have been added to be ignored.
971 if (keys (%ignored)) {
972 my $col = "";
973
974 # Loop through all entries of the hash.
975 while( (my $key) = each %ignored) {
976 # Assign data array positions to some nice variable names.
977 my $address = $ignored{$key}[0];
978 my $remark = $ignored{$key}[1];
979 my $status = $ignored{$key}[2];
980
981 # Check if the key (id) number is even or not.
982 if ($cgiparams{'ID'} eq $key) {
983 $col="bgcolor='${Header::colouryellow}'";
984 } elsif ($key % 2) {
985 $col="bgcolor='$color{'color22'}'";
986 } else {
987 $col="bgcolor='$color{'color20'}'";
988 }
989
990 # Choose icon for the checkbox.
991 my $gif;
992 my $gdesc;
993
994 # Check if the status is enabled and select the correct image and description.
995 if ($status eq 'enabled' ) {
996 $gif = 'on.gif';
997 $gdesc = $Lang::tr{'click to disable'};
998 } else {
999 $gif = 'off.gif';
1000 $gdesc = $Lang::tr{'click to enable'};
1001 }
1002
1003print <<END;
1004 <tr>
1005 <td width='20%' class='base' $col>$address</td>
1006 <td width='65%' class='base' $col>$remark</td>
1007
1008 <td align='center' $col>
1009 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1010 <input type='hidden' name='WHITELIST' value='$Lang::tr{'toggle enable disable'}' />
1011 <input type='image' name='$Lang::tr{'toggle enable disable'}' src='/images/$gif' alt='$gdesc' title='$gdesc' />
1012 <input type='hidden' name='ID' value='$key' />
1013 </form>
1014 </td>
1015
1016 <td align='center' $col>
1017 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1018 <input type='hidden' name='WHITELIST' value='$Lang::tr{'edit'}' />
1019 <input type='image' name='$Lang::tr{'edit'}' src='/images/edit.gif' alt='$Lang::tr{'edit'}' title='$Lang::tr{'edit'}' />
1020 <input type='hidden' name='ID' value='$key' />
1021 </form>
1022 </td>
1023
1024 <td align='center' $col>
1025 <form method='post' name='$key' action='$ENV{'SCRIPT_NAME'}'>
1026 <input type='image' name='$Lang::tr{'remove'}' src='/images/delete.gif' title='$Lang::tr{'remove'}' alt='$Lang::tr{'remove'}'>
1027 <input type='hidden' name='ID' value='$key'>
1028 <input type='hidden' name='WHITELIST' value='$Lang::tr{'remove'}'>
1029 </form>
2bbe6ede
SS
1030 </td>
1031 </tr>
b7e29743 1032END
2bbe6ede
SS
1033 }
1034 } else {
1035 # Print notice that currently no hosts are ignored.
1036 print "<tr>\n";
1037 print "<td class='base' colspan='2'>$Lang::tr{'guardian no entries'}</td>\n";
1038 print "</tr>\n";
b7e29743 1039 }
b7e29743 1040
2bbe6ede 1041 print "</table>\n";
b7e29743 1042
2bbe6ede 1043 # Section to add new elements or edit existing ones.
b7e29743 1044print <<END;
2bbe6ede
SS
1045 <br>
1046 <hr>
1047 <br>
1048
1049 <div align='center'>
1050 <table width='100%'>
b7e29743
SS
1051END
1052
2bbe6ede
SS
1053 # Assign correct headline and button text.
1054 my $buttontext;
1055 my $entry_address;
1056 my $entry_remark;
b7e29743 1057
2bbe6ede
SS
1058 # Check if an ID (key) has been given, in this case an existing entry should be edited.
1059 if ($cgiparams{'ID'} ne '') {
1060 $buttontext = $Lang::tr{'update'};
1061 print "<tr><td class='boldbase' colspan='3'><b>$Lang::tr{'update'}</b></td></tr>\n";
b7e29743 1062
2bbe6ede
SS
1063 # Grab address and remark for the given key.
1064 $entry_address = $ignored{$cgiparams{'ID'}}[0];
1065 $entry_remark = $ignored{$cgiparams{'ID'}}[1];
1066 } else {
1067 $buttontext = $Lang::tr{'add'};
1068 print "<tr><td class='boldbase' colspan='3'><b>$Lang::tr{'dnsforward add a new entry'}</b></td></tr>\n";
1069 }
b7e29743
SS
1070
1071print <<END;
2bbe6ede
SS
1072 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1073 <input type='hidden' name='ID' value='$cgiparams{'ID'}'>
1074 <tr>
1075 <td width='30%'>$Lang::tr{'ip address'}: </td>
1076 <td width='50%'><input type='text' name='IGNORE_ENTRY_ADDRESS' value='$entry_address' size='24' /></td>
b7e29743 1077
2bbe6ede
SS
1078 <td width='30%'>$Lang::tr{'remark'}: </td>
1079 <td wicth='50%'><input type='text' name=IGNORE_ENTRY_REMARK value='$entry_remark' size='24' /></td>
1080 <td align='center' width='20%'><input type='submit' name='WHITELIST' value='$buttontext' /></td>
1081 </tr>
1082 </form>
1083 </table>
1084 </div>
b7e29743
SS
1085END
1086
2bbe6ede 1087 &Header::closebox();
fed57fe7
SS
1088}
1089
fed57fe7
SS
1090#
1091## Function to show the customize ruleset section.
1092#
1093sub show_customize_ruleset() {
2bbe6ede
SS
1094 ### Java Script ###
1095 print"<script>\n";
1096
1097 # Java script variable declaration for show and hide.
1098 print"var show = \"$Lang::tr{'ids show'}\"\;\n";
1099 print"var hide = \"$Lang::tr{'ids hide'}\"\;\n";
1100
1101print <<END
1102 // Tiny java script function to show/hide the rules
1103 // of a given category.
1104 function showhide(tblname) {
1105 \$("#" + tblname).toggle();
1106
1107 // Get current content of the span element.
1108 var content = document.getElementById("span_" + tblname);
1109
1110 if (content.innerHTML === show) {
1111 content.innerHTML = hide;
1112 } else {
1113 content.innerHTML = show;
1114 }
1115 }
1116 </script>
1117END
1118;
5fbd7b29
SS
1119 # Load neccessary perl modules for file stat and to format the timestamp.
1120 use File::stat;
1121 use POSIX qw( strftime );
1122
1123 # Call stat on the rulestarball.
1124 my $stat = stat("$IDS::rulestarball");
1125
9268cddf
MT
1126 if (defined $stat) {
1127 # Get timestamp the file creation.
1128 my $mtime = $stat->mtime;
5fbd7b29 1129
9268cddf
MT
1130 # Convert into human read-able format.
1131 my $rulesdate = strftime('%Y-%m-%d %H:%M:%S', localtime($mtime));
5fbd7b29 1132
9268cddf 1133 &Header::openbox('100%', 'LEFT', "$Lang::tr{'intrusion detection system rules'} ($rulesdate)" );
298723b9 1134
80bcd4dd 1135 print"<form method='POST' action='$ENV{'SCRIPT_NAME'}'>\n";
ce0e83b3 1136
80bcd4dd
SS
1137 # Output display table for rule files
1138 print "<table width='100%'>\n";
f7fcd1c0 1139
80bcd4dd
SS
1140 # Loop over each rule file
1141 foreach my $rulefile (sort keys(%idsrules)) {
1142 my $rulechecked = '';
3ffee04b 1143
80bcd4dd
SS
1144 # Check if rule file is enabled
1145 if ($idsrules{$rulefile}{'Rulefile'}{'State'} eq 'on') {
1146 $rulechecked = 'CHECKED';
1147 }
1148
0a1bba1a
SS
1149 # Convert rulefile name into category name.
1150 my $categoryname = &_rulefile_to_category($rulefile);
1151
80bcd4dd
SS
1152 # Table and rows for the rule files.
1153 print"<tr>\n";
1154 print"<td class='base' width='5%'>\n";
1155 print"<input type='checkbox' name='$rulefile' $rulechecked>\n";
1156 print"</td>\n";
1157 print"<td class='base' width='90%'><b>$rulefile</b></td>\n";
1158 print"<td class='base' width='5%' align='right'>\n";
e0cec9fe 1159 print"<a href=\"javascript:showhide('$categoryname')\"><span id='span_$categoryname'>$Lang::tr{'ids show'}</span></a>\n";
80bcd4dd
SS
1160 print"</td>\n";
1161 print"</tr>\n";
1162
1163 # Rows which will be hidden per default and will contain the single rules.
0a1bba1a 1164 print"<tr style='display:none' id='$categoryname'>\n";
80bcd4dd 1165 print"<td colspan='3'>\n";
17726644 1166
f7fcd1c0 1167 # Local vars
80bcd4dd
SS
1168 my $lines;
1169 my $rows;
1170 my $col;
f9c2147d 1171
80bcd4dd
SS
1172 # New table for the single rules.
1173 print "<table width='100%'>\n";
e5738079 1174
80bcd4dd
SS
1175 # Loop over rule file rules
1176 foreach my $sid (sort {$a <=> $b} keys(%{$idsrules{$rulefile}})) {
1177 # Local vars
1178 my $ruledefchecked = '';
3ffee04b 1179
80bcd4dd
SS
1180 # Skip rulefile itself.
1181 next if ($sid eq "Rulefile");
f7fcd1c0 1182
80bcd4dd
SS
1183 # If 2 rules have been displayed, start a new row
1184 if (($lines % 2) == 0) {
1185 print "</tr><tr>\n";
1186
1187 # Increase rows by once.
1188 $rows++;
1189 }
1190
1191 # Colour lines.
1192 if ($rows % 2) {
1193 $col="bgcolor='$color{'color20'}'";
1194 } else {
1195 $col="bgcolor='$color{'color22'}'";
1196 }
f7fcd1c0 1197
80bcd4dd
SS
1198 # Set rule state
1199 if ($idsrules{$rulefile}{$sid}{'State'} eq 'on') {
1200 $ruledefchecked = 'CHECKED';
1201 }
1202
1203 # Create rule checkbox and display rule description
1204 print "<td class='base' width='5%' align='right' $col>\n";
1205 print "<input type='checkbox' NAME='$sid' $ruledefchecked>\n";
1206 print "</td>\n";
1207 print "<td class='base' width='45%' $col>$idsrules{$rulefile}{$sid}{'Description'}</td>";
1208
1209 # Increment rule count
1210 $lines++;
f7fcd1c0 1211 }
3ffee04b 1212
80bcd4dd
SS
1213 # If do not have a second rule for row, create empty cell
1214 if (($lines % 2) != 0) {
1215 print "<td class='base'></td>";
1216 }
17726644 1217
80bcd4dd
SS
1218 # Close display table
1219 print "</tr></table></td></tr>";
f7fcd1c0
SS
1220 }
1221
1222 # Close display table
80bcd4dd 1223 print "</table>";
17726644 1224
9268cddf 1225 print <<END
2999f1d2
CS
1226<table width='100%'>
1227<tr>
4efc8ccd
SS
1228 <td width='100%' align='right'>
1229 <input type='submit' value='$Lang::tr{'fwhost back'}'>
1230 <input type='submit' name='RULESET' value='$Lang::tr{'ids apply'}'>
1231 </td>
2999f1d2
CS
1232</tr>
1233</table>
298723b9 1234</form>
3ffee04b
CS
1235END
1236;
9268cddf
MT
1237 &Header::closebox();
1238 }
80bcd4dd
SS
1239}
1240
27760092
SS
1241#
1242## A function to display a notice, to lock the webpage and
1243## tell the user which action currently will be performed.
1244#
1245sub working_notice ($) {
1246 my ($message) = @_;
1247
1248 &Header::openpage($Lang::tr{'intrusion detection system'}, 1, '');
1249 &Header::openbigbox('100%', 'left', '', $errormessage);
1250 &Header::openbox( 'Waiting', 1,);
1251 print <<END;
1252 <table>
1253 <tr>
1254 <td><img src='/images/indicator.gif' alt='$Lang::tr{'aktiv'}' /></td>
1255 <td>$message</td>
1256 </tr>
1257 </table>
1258END
1259 &Header::closebox();
1260 &Header::closebigbox();
1261 &Header::closepage();
1262}
1263
3983aebd
SS
1264#
1265## A tiny function to perform a reload of the webpage after one second.
1266#
1267sub reload () {
1268 print "<meta http-equiv='refresh' content='1'>\n";
1269
1270 # Stop the script.
1271 exit;
a70d269a
SS
1272}
1273
25f5cb0d
SS
1274#
1275## Private function to read-in and parse rules of a given rulefile.
1276#
1277## The given file will be read, parsed and all valid rules will be stored by ID,
9d18656b 1278## message/description and it's state in the idsrules hash.
25f5cb0d 1279#
3da6e01b
SS
1280sub readrulesfile ($) {
1281 my $rulefile = shift;
1282
1283 # Open rule file and read in contents
298ef5ba 1284 open(RULEFILE, "$IDS::rulespath/$rulefile") or die "Unable to read $rulefile!";
3da6e01b
SS
1285
1286 # Store file content in an array.
1287 my @lines = <RULEFILE>;
1288
1289 # Close file.
1290 close(RULEFILE);
1291
1292 # Loop over rule file contents
1293 foreach my $line (@lines) {
1294 # Remove whitespaces.
1295 chomp $line;
1296
1297 # Skip blank lines.
1298 next if ($line =~ /^\s*$/);
1299
1300 # Local vars.
1301 my $sid;
1302 my $msg;
1303
1304 # Gather rule sid and message from the ruleline.
1305 if ($line =~ m/.*msg:\"(.*?)\"\; .* sid:(.*?); /) {
1306 $msg = $1;
1307 $sid = $2;
1308
1309 # Check if a rule has been found.
1310 if ($sid && $msg) {
9d18656b
SS
1311 # Add rule to the idsrules hash.
1312 $idsrules{$rulefile}{$sid}{'Description'} = $msg;
3da6e01b
SS
1313
1314 # Grab status of the rule. Check if ruleline starts with a "dash".
1315 if ($line =~ /^\#/) {
1316 # If yes, the rule is disabled.
9d18656b 1317 $idsrules{$rulefile}{$sid}{'State'} = "off";
3da6e01b
SS
1318 } else {
1319 # Otherwise the rule is enabled.
9d18656b 1320 $idsrules{$rulefile}{$sid}{'State'} = "on";
3da6e01b
SS
1321 }
1322 }
1323 }
b7e29743 1324 }
3da6e01b 1325}
87660964 1326
8d2f6b0b
SS
1327#
1328## Function to get the used memory of a given process-id.
1329#
87660964 1330sub get_memory_usage($) {
004b13b7 1331 my ($pid) = @_;
87660964 1332
004b13b7 1333 my $memory = 0;
87660964 1334
004b13b7 1335 # Try to open the status file for the given process-id on the pseudo
87660964 1336 # file system proc.
004b13b7
SS
1337 if (open(FILE, "/proc/$pid/status")) {
1338 # Loop through the entire file.
1339 while (<FILE>) {
1340 # Splitt current line content and store them into variables.
1341 my ($key, $value) = split(":", $_, 2);
1342
1343 # Check if the current key is the one which contains the memory usage.
1344 # The wanted one is VmRSS which contains the Real-memory (resident set)
1345 # of the entire process.
1346 if ($key eq "VmRSS") {
1347 # Found the memory usage add it to the memory variable.
1348 $memory += $value;
1349
1350 # Break the loop.
1351 last;
1352 }
1353 }
87660964
SS
1354
1355 # Close file handle.
004b13b7 1356 close(FILE);
87660964
SS
1357
1358 # Return memory usage.
1359 return $memory;
004b13b7 1360 }
87660964
SS
1361
1362 # If the file could not be open, return nothing.
1363 return;
1364}
1365
a5d61752
SS
1366#
1367## Function to read-in the given enabled or disables sids file.
1368#
1369sub read_enabled_disabled_sids_file($) {
1370 my ($file) = @_;
1371
1372 # Temporary hash to store the sids and their state. It will be
1373 # returned at the end of this function.
1374 my %temphash;
1375
1376 # Open the given filename.
1377 open(FILE, "$file") or die "Could not open $file. $!\n";
1378
1379 # Loop through the file.
1380 while(<FILE>) {
1381 # Remove newlines.
1382 chomp $_;
1383
1384 # Skip blank lines.
1385 next if ($_ =~ /^\s*$/);
1386
1387 # Skip coments.
1388 next if ($_ =~ /^\#/);
1389
1390 # Splitt line into sid and state part.
1391 my ($state, $sid) = split(" ", $_);
1392
1393 # Skip line if the sid is not numeric.
1394 next unless ($sid =~ /\d+/ );
1395
1396 # Check if the sid was enabled.
1397 if ($state eq "enablesid") {
1398 # Add the sid and its state as enabled to the temporary hash.
1399 $temphash{$sid} = "enabled";
1400 # Check if the sid was disabled.
1401 } elsif ($state eq "disablesid") {
1402 # Add the sid and its state as disabled to the temporary hash.
1403 $temphash{$sid} = "disabled";
1404 # Invalid state - skip the current sid and state.
1405 } else {
1406 next;
1407 }
1408 }
1409
1410 # Close filehandle.
1411 close(FILE);
1412
1413 # Return the hash.
1414 return %temphash;
1415}
0a1bba1a 1416
019e5e9b
SS
1417#
1418## Function to get the provider name from the language file or providers file for a given handle.
1419#
1420sub get_provider_name($) {
1421 my ($handle) = @_;
1422 my $provider_name;
1423
1424 # Get the required translation string for the given provider handle.
1425 my $tr_string = $IDS::Ruleset::Providers{$handle}{'tr_string'};
1426
1427 # Check if the translation string is available in the language files.
1428 if ($Lang::tr{$tr_string}) {
1429 # Use the translated string from the language file.
1430 $provider_name = $Lang::tr{$tr_string};
1431 } else {
1432 # Fallback and use the provider summary from the providers file.
1433 $provider_name = $IDS::Ruleset::Providers{$handle}{'summary'};
1434 }
1435
1436 # Return the obtained provider name.
1437 return $provider_name;
1438}
1439
0a1bba1a
SS
1440#
1441## Private function to convert a given rulefile to a category name.
1442## ( No file extension anymore and if the name contained a dot, it
1443## would be replaced by a underline sign.)
1444#
1445sub _rulefile_to_category($) {
1446 my ($filename) = @_;
1447
1448 # Splitt the filename into single chunks and store them in a
1449 # temorary array.
1450 my @parts = split(/\./, $filename);
1451
1452 # Return / Remove last element of the temporary array.
1453 # This removes the file extension.
1454 pop @parts;
1455
1456 # Join together the single elements of the temporary array.
1457 # If these are more than one, use a "underline" for joining.
1458 my $category = join '_', @parts;
1459
1460 # Return the converted filename.
1461 return $category;
1462}