]> git.ipfire.org Git - ipfire-2.x.git/blame - html/cgi-bin/ids.cgi
IDS: Redesign backend for used provider rulesfiles.
[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=();
2f252efa 41my %used_providers=();
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 #
ddaf8ae1
SS
257
258 # Get enabled providers.
259 my @enabled_providers = &IDS::get_enabled_providers();
260
a468b62b
SS
261 # Open rules directory and do a directory listing.
262 opendir(DIR, $IDS::rulespath) or die $!;
263 # Loop through the direcory.
264 while (my $file = readdir(DIR)) {
422204ff 265
a468b62b
SS
266 # We only want files.
267 next unless (-f "$IDS::rulespath/$file");
422204ff 268
a468b62b
SS
269 # Ignore empty files.
270 next if (-z "$IDS::rulespath/$file");
422204ff 271
a468b62b
SS
272 # Use a regular expression to find files ending in .rules
273 next unless ($file =~ m/\.rules$/);
422204ff 274
a468b62b
SS
275 # Ignore files which are not read-able.
276 next unless (-R "$IDS::rulespath/$file");
395e3b90 277
a468b62b
SS
278 # Skip whitelist rules file.
279 next if( $file eq "whitelist.rules");
b7e29743 280
ddaf8ae1
SS
281 # Splitt vendor from filename.
282 my @filename_parts = split(/-/, $file);
283
284 # Assign vendor name for easy processing.
285 my $vendor = @filename_parts[0];
286
287 # Skip rulefile if the provider is disabled.
288 next unless ($vendor ~~ @enabled_providers);
289
a468b62b
SS
290 # Call subfunction to read-in rulefile and add rules to
291 # the idsrules hash.
292 &readrulesfile("$file");
293 }
395e3b90 294
a468b62b 295 closedir(DIR);
395e3b90 296
ddaf8ae1
SS
297 # Loop through the array of used providers.
298 foreach my $provider (@enabled_providers) {
299 # Gather used rulefiles.
300 my @used_rulesfiles = &IDS::read_used_provider_rulesfiles($provider);
301
302 # Loop through the array of used rulesfiles.
303 foreach my $rulefile (@used_rulesfiles) {
304 # Check if the current rulefile exists in the %idsrules hash.
305 # If not, the file probably does not exist anymore or contains
306 # no rules.
307 if($idsrules{$rulefile}) {
308 # Add the rulefile state to the %idsrules hash.
309 $idsrules{$rulefile}{'Rulefile'}{'State'} = "on";
310 }
e5738079
SS
311 }
312 }
313}
314
ea5c8eeb
SS
315# Save ruleset configuration.
316if ($cgiparams{'RULESET'} eq $Lang::tr{'save'}) {
317 my %oldsettings;
318
319 # Read-in current (old) IDS settings.
b02e30fd 320 &General::readhash("$IDS::rules_settings_file", \%oldsettings);
ea5c8eeb
SS
321
322 # Prevent form name from been stored in conf file.
323 delete $cgiparams{'RULESET'};
324
613f58fb 325 # Check if the choosen vendor (URL) requires an subscription/oinkcode.
3e12c6e6 326 if ($IDS::Ruleset::Providers{$cgiparams{'RULES'}}{'requires_subscription'} eq "True") {
613f58fb
SS
327 # Check if an subscription/oinkcode has been provided.
328 if ($cgiparams{'OINKCODE'}) {
329 # Check if the oinkcode contains unallowed chars.
330 unless ($cgiparams{'OINKCODE'} =~ /^[a-z0-9]+$/) {
331 $errormessage = $Lang::tr{'invalid input for oink code'};
332 }
333 } else {
334 # Print an error message, that an subsription/oinkcode is required for this
335 # vendor.
336 $errormessage = $Lang::tr{'ids oinkcode required'};
ea5c8eeb
SS
337 }
338 }
339
340 # Go on if there are no error messages.
341 if (!$errormessage) {
342 # Store settings into settings file.
b02e30fd 343 &General::writehash("$IDS::rules_settings_file", \%cgiparams);
ea5c8eeb 344
f644a167
SS
345 # Check if a ruleset is present - if not or the source has been changed download it.
346 if((! %idsrules) || ($oldsettings{'RULES'} ne $cgiparams{'RULES'})) {
347 # Check if the red device is active.
348 unless (-e "${General::swroot}/red/active") {
349 $errormessage = "$Lang::tr{'could not download latest updates'} - $Lang::tr{'system is offline'}";
5fd2e9d6
SS
350 }
351
a5ba473c 352 # Check if enough free disk space is availabe.
f644a167
SS
353 if(&IDS::checkdiskspace()) {
354 $errormessage = "$Lang::tr{'not enough disk space'}";
97870bf2
SS
355 }
356
f644a167
SS
357 # Check if any errors happend.
358 unless ($errormessage) {
359 # Lock the webpage and print notice about downloading
360 # a new ruleset.
5bd8940d 361 &working_notice("$Lang::tr{'ids working'}");
f644a167 362
a5ba473c 363 # Write the modify sid's file and pass the taken ruleaction.
81bae51f 364 &IDS::write_modify_sids_file();
a5ba473c 365
f644a167
SS
366 # Call subfunction to download the ruleset.
367 if(&IDS::downloadruleset()) {
368 $errormessage = $Lang::tr{'could not download latest updates'};
369
370 # Call function to store the errormessage.
371 &IDS::_store_error_message($errormessage);
372 } else {
373 # Call subfunction to launch oinkmaster.
374 &IDS::oinkmaster();
375 }
376
377 # Check if the IDS is running.
378 if(&IDS::ids_is_running()) {
379 # Call suricatactrl to stop the IDS - because of the changed
380 # ruleset - the use has to configure it before suricata can be
381 # used again.
382 &IDS::call_suricatactrl("stop");
383 }
384
385 # Perform a reload of the page.
386 &reload();
387 }
5fd2e9d6
SS
388 }
389 }
390
298723b9 391# Save ruleset.
ee7fe87e 392} elsif ($cgiparams{'RULESET'} eq $Lang::tr{'ids apply'}) {
d2212836 393 # Arrays to store which rulefiles have been enabled and will be used.
e5738079 394 my @enabled_rulefiles;
298723b9 395
d2212836
SS
396 # Hash to store the user-enabled and disabled sids.
397 my %enabled_disabled_sids;
398
af8e5145
SS
399 # Store if a restart of suricata is required.
400 my $suricata_restart_required;
401
9d18656b
SS
402 # Loop through the hash of idsrules.
403 foreach my $rulefile(keys %idsrules) {
1622e5c1
SS
404 # Check if the state of the rulefile has been changed.
405 unless ($cgiparams{$rulefile} eq $idsrules{$rulefile}{'Rulefile'}{'State'}) {
406 # A restart of suricata is required to apply the changes of the used rulefiles.
407 $suricata_restart_required = 1;
408 }
409
e5738079
SS
410 # Check if the rulefile is enabled.
411 if ($cgiparams{$rulefile} eq "on") {
412 # Add rulefile to the array of enabled rulefiles.
413 push(@enabled_rulefiles, $rulefile);
b65b5ef3
SS
414
415 # Drop item from cgiparams hash.
416 delete $cgiparams{$rulefile};
e5738079 417 }
466c6779 418 }
e5738079 419
d2212836
SS
420 # Read-in the files for enabled/disabled sids.
421 # This will be done by calling the read_enabled_disabled_sids_file function two times
422 # and merge the returned hashes together into the enabled_disabled_sids hash.
423 %enabled_disabled_sids = (
b02e30fd
SS
424 &read_enabled_disabled_sids_file($IDS::disabled_sids_file),
425 &read_enabled_disabled_sids_file($IDS::enabled_sids_file));
d2212836 426
9d18656b
SS
427 # Loop through the hash of idsrules.
428 foreach my $rulefile (keys %idsrules) {
298723b9 429 # Loop through the single rules of the rulefile.
9d18656b 430 foreach my $sid (keys %{$idsrules{$rulefile}}) {
c51a044a
SS
431 # Skip the current sid if it is not numeric.
432 next unless ($sid =~ /\d+/ );
433
298723b9
SS
434 # Check if there exists a key in the cgiparams hash for this sid.
435 if (exists($cgiparams{$sid})) {
436 # Look if the rule is disabled.
9d18656b 437 if ($idsrules{$rulefile}{$sid}{'State'} eq "off") {
298723b9
SS
438 # Check if the state has been set to 'on'.
439 if ($cgiparams{$sid} eq "on") {
d2212836
SS
440 # Add/Modify the sid to/in the enabled_disabled_sids hash.
441 $enabled_disabled_sids{$sid} = "enabled";
298723b9
SS
442
443 # Drop item from cgiparams hash.
60333473 444 delete $cgiparams{$rulefile}{$sid};
298723b9
SS
445 }
446 }
447 } else {
448 # Look if the rule is enabled.
9d18656b 449 if ($idsrules{$rulefile}{$sid}{'State'} eq "on") {
298723b9
SS
450 # Check if the state is 'on' and should be disabled.
451 # In this case there is no entry
452 # for the sid in the cgiparams hash.
d2212836
SS
453 # Add/Modify it to/in the enabled_disabled_sids hash.
454 $enabled_disabled_sids{$sid} = "disabled";
298723b9
SS
455
456 # Drop item from cgiparams hash.
60333473 457 delete $cgiparams{$rulefile}{$sid};
298723b9
SS
458 }
459 }
460 }
461 }
462
37659505 463 # Open enabled sid's file for writing.
b02e30fd 464 open(ENABLED_FILE, ">$IDS::enabled_sids_file") or die "Could not write to $IDS::enabled_sids_file. $!\n";
37659505
SS
465
466 # Open disabled sid's file for writing.
b02e30fd 467 open(DISABLED_FILE, ">$IDS::disabled_sids_file") or die "Could not write to $IDS::disabled_sids_file. $!\n";
d2212836
SS
468
469 # Write header to the files.
470 print ENABLED_FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
471 print DISABLED_FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
472
473 # Check if the hash for enabled/disabled files contains any entries.
474 if (%enabled_disabled_sids) {
475 # Loop through the hash.
476 foreach my $sid (keys %enabled_disabled_sids) {
477 # Check if the sid is enabled.
478 if ($enabled_disabled_sids{$sid} eq "enabled") {
479 # Print the sid to the enabled_sids file.
480 print ENABLED_FILE "enablesid $sid\n";
481 # Check if the sid is disabled.
482 } elsif ($enabled_disabled_sids{$sid} eq "disabled") {
483 # Print the sid to the disabled_sids file.
484 print DISABLED_FILE "disablesid $sid\n";
485 # Something strange happende - skip the current sid.
486 } else {
487 next;
488 }
37659505
SS
489 }
490 }
298723b9 491
d2212836
SS
492 # Close file for enabled_sids after writing.
493 close(ENABLED_FILE);
494
495 # Close file for disabled_sids after writing.
496 close(DISABLED_FILE);
e5738079 497
ddaf8ae1
SS
498 # Handle enabled / disabled rulefiles.
499 #
500 # Get enabled providers.
501 my @enabled_providers = &IDS::get_enabled_providers();
502
503 # Loop through the array of enabled providers.
504 foreach my $provider(@enabled_providers) {
505 # Array to store the rulefiles which belong to the current processed provider.
506 my @provider_rulefiles = ();
507
508 # Loop through the array of enabled rulefiles.
509 foreach my $rulesfile (@enabled_rulefiles) {
510 # Split the rulefile name.
511 my @filename_parts = split(/-/, "$rulesfile");
512
513 # Assign vendor name for easy processings.
514 my $vendor = @filename_parts[0];
515
516 # Check if the rulesvendor is our current processed enabled provider.
517 if ("$vendor" eq "$provider") {
518 # Add the rulesfile to the array of provider rulesfiles.
519 push(@provider_rulefiles, $rulesfile);
520 }
521
522 # Check if any rulesfiles have been found for this provider.
523 if (@provider_rulefiles) {
524 # Call function and write the providers used rulesfile file.
525 &IDS::write_used_provider_rulefiles_file($provider, @provider_rulefiles);
526 }
527 }
528 }
529
b02e30fd 530 # Call function to generate and write the used rulefiles file.
ddaf8ae1 531 &IDS::write_main_used_rulefiles_file(@enabled_providers);
52599865 532
27760092 533 # Lock the webpage and print message.
5bd8940d 534 &working_notice("$Lang::tr{'ids apply ruleset changes'}");
27760092 535
52599865 536 # Call oinkmaster to alter the ruleset.
27760092
SS
537 &IDS::oinkmaster();
538
e2e7880d 539 # Check if the IDS is running.
5a28e721 540 if(&IDS::ids_is_running()) {
af8e5145
SS
541 # Check if a restart of suricata is required.
542 if ($suricata_restart_required) {
543 # Call suricatactrl to perform the restart.
544 &IDS::call_suricatactrl("restart");
545 } else {
546 # Call suricatactrl to perform a reload.
547 &IDS::call_suricatactrl("reload");
548 }
e2e7880d
SS
549 }
550
27760092
SS
551 # Reload page.
552 &reload();
52599865
SS
553
554# Download new ruleset.
5fd2e9d6 555} elsif ($cgiparams{'RULESET'} eq $Lang::tr{'update ruleset'}) {
43263ea6
SS
556 # Check if the red device is active.
557 unless (-e "${General::swroot}/red/active") {
013274d7 558 $errormessage = "$Lang::tr{'could not download latest updates'} - $Lang::tr{'system is offline'}";
43263ea6 559 }
52599865 560
3983aebd 561 # Check if enought free disk space is availabe.
434001d0
SS
562 if(&IDS::checkdiskspace()) {
563 $errormessage = "$Lang::tr{'not enough disk space'}";
564 }
52599865 565
43263ea6
SS
566 # Check if any errors happend.
567 unless ($errormessage) {
27760092
SS
568 # Lock the webpage and print notice about downloading
569 # a new ruleset.
5bd8940d 570 &working_notice("$Lang::tr{'ids download new ruleset'}");
3983aebd 571
43263ea6 572 # Call subfunction to download the ruleset.
434001d0
SS
573 if(&IDS::downloadruleset()) {
574 $errormessage = $Lang::tr{'could not download latest updates'};
8f22237b 575
3983aebd 576 # Call function to store the errormessage.
434001d0 577 &IDS::_store_error_message($errormessage);
52599865 578
3983aebd
SS
579 # Preform a reload of the page.
580 &reload();
581 } else {
582 # Call subfunction to launch oinkmaster.
583 &IDS::oinkmaster();
43263ea6 584
e2e7880d 585 # Check if the IDS is running.
5a28e721 586 if(&IDS::ids_is_running()) {
e2e7880d
SS
587 # Call suricatactrl to perform a reload.
588 &IDS::call_suricatactrl("reload");
589 }
590
3983aebd
SS
591 # Perform a reload of the page.
592 &reload();
593 }
52599865 594 }
5bd8940d 595# Save IDS settings.
e0bfd338 596} elsif ($cgiparams{'IDS'} eq $Lang::tr{'save'}) {
bbb6efae
SS
597 my %oldidssettings;
598 my $reload_page;
ebdd0f9a 599 my $monitored_zones = 0;
bbb6efae
SS
600
601 # Read-in current (old) IDS settings.
b02e30fd 602 &General::readhash("$IDS::ids_settings_file", \%oldidssettings);
bbb6efae 603
a232b58c 604 # Prevent form name from been stored in conf file.
e0bfd338 605 delete $cgiparams{'IDS'};
a232b58c 606
ebdd0f9a
SS
607 # Check if the IDS should be enabled.
608 if ($cgiparams{'ENABLE_IDS'} eq "on") {
609 # Check if any ruleset is available. Otherwise abort and display an error.
2f252efa 610 unless(%used_providers) {
ebdd0f9a
SS
611 $errormessage = $Lang::tr{'ids no ruleset available'};
612 }
613
614 # Loop through the array of available interfaces.
615 foreach my $zone (@network_zones) {
616 # Convert interface name into upper case.
617 my $zone_upper = uc($zone);
618
619 # Check if the IDS is enabled for this interaces.
620 if ($cgiparams{"ENABLE_IDS_$zone_upper"}) {
621 # Increase count.
622 $monitored_zones++;
623 }
624 }
625
626 # Check if at least one zone should be monitored, or show an error.
627 unless ($monitored_zones >= 1) {
628 $errormessage = $Lang::tr{'ids no network zone'};
629 }
630 }
631
a232b58c
SS
632 # Go on if there are no error messages.
633 if (!$errormessage) {
634 # Store settings into settings file.
b02e30fd 635 &General::writehash("$IDS::ids_settings_file", \%cgiparams);
a9a91e5f 636 }
8d2f6b0b 637
77351a6b
SS
638 # Check if the the automatic rule update hass been touched.
639 if($cgiparams{'AUTOUPDATE_INTERVAL'} ne $oldidssettings{'AUTOUPDATE_INTERVAL'}) {
640 # Call suricatactrl to set the new interval.
641 &IDS::call_suricatactrl("cron", $cgiparams{'AUTOUPDATE_INTERVAL'});
642 }
643
8d2f6b0b 644 # Generate file to store the home net.
b02e30fd 645 &IDS::generate_home_net_file();
e2e7880d 646
a40ee6b9
SS
647 # Generate file to the store the DNS servers.
648 &IDS::generate_dns_servers_file();
649
e698090e
SS
650 # Generate file to store the HTTP ports.
651 &IDS::generate_http_ports_file();
652
74cc8f5a 653 # Write the modify sid's file and pass the taken ruleaction.
81bae51f 654 &IDS::write_modify_sids_file();
bbb6efae 655
01d02eb6
SS
656 # Check if "MONITOR_TRAFFIC_ONLY" has been changed.
657 if($cgiparams{'MONITOR_TRAFFIC_ONLY'} ne $oldidssettings{'MONITOR_TRAFFIC_ONLY'}) {
bbb6efae 658 # Check if a ruleset exists.
2f252efa 659 if (%used_providers) {
bbb6efae 660 # Lock the webpage and print message.
5bd8940d 661 &working_notice("$Lang::tr{'ids working'}");
bbb6efae
SS
662
663 # Call oinkmaster to alter the ruleset.
664 &IDS::oinkmaster();
665
666 # Set reload_page to "True".
667 $reload_page="True";
668 }
669 }
670
e2e7880d
SS
671 # Check if the IDS currently is running.
672 if(&IDS::ids_is_running()) {
673 # Check if ENABLE_IDS is set to on.
674 if($cgiparams{'ENABLE_IDS'} eq "on") {
675 # Call suricatactrl to perform a reload of suricata.
676 &IDS::call_suricatactrl("reload");
677 } else {
678 # Call suricatactrl to stop suricata.
679 &IDS::call_suricatactrl("stop");
680 }
681 } else {
682 # Call suricatactrl to start suricata.
683 &IDS::call_suricatactrl("start");
684 }
bbb6efae
SS
685
686 # Check if the page should be reloaded.
687 if ($reload_page) {
688 # Perform a reload of the page.
689 &reload();
690 }
4c067847 691
9bf260de
SS
692# Toggle Enable/Disable autoupdate for a provider
693} elsif ($cgiparams{'AUTOUPDATE'} eq $Lang::tr{'toggle enable disable'}) {
694 my %used_providers = ();
695
696 # Only go further, if an ID has been passed.
697 if ($cgiparams{'ID'}) {
698 # Assign the given ID.
699 my $id = $cgiparams{'ID'};
700
701 # Undef the given ID.
702 undef($cgiparams{'ID'});
703
704 # Read-in providers settings file.
705 &General::readhasharray($IDS::providers_settings_file, \%used_providers);
706
707 # Grab the configured status of the corresponding entry.
708 my $status_autoupdate = $used_providers{$id}[2];
709
710 # Switch the status.
711 if ($status_autoupdate eq "disabled") {
712 $status_autoupdate = "enabled";
713 } else {
714 $status_autoupdate = "disabled";
715 }
716
717 # Modify the status of the existing entry.
718 $used_providers{$id} = ["$used_providers{$id}[0]", "$used_providers{$id}[1]", "$status_autoupdate", "$used_providers{$id}[3]"];
719
720 # Write the changed hash to the providers settings file.
721 &General::writehasharray($IDS::providers_settings_file, \%used_providers);
722 }
723
724# Add/Edit a provider to the list of used providers.
725#
4c067847 726} elsif (($cgiparams{'PROVIDERS'} eq "$Lang::tr{'add'}") || ($cgiparams{'PROVIDERS'} eq "$Lang::tr{'update'}")) {
aba3cbe5
SS
727 my %used_providers = ();
728
729 # Read-in providers settings file.
730 &General::readhasharray("$IDS::providers_settings_file", \%used_providers);
731
4c067847
SS
732 # Assign some nice human-readable values.
733 my $provider = $cgiparams{'PROVIDER'};
734 my $subscription_code = $cgiparams{'SUBSCRIPTION_CODE'};
bb4c30c6
SS
735 my $status_autoupdate;
736
737 # Handle autoupdate checkbox.
738 if ($cgiparams{'ENABLE_AUTOUPDATE'} eq "on") {
739 $status_autoupdate = "enabled";
740 } else {
741 $status_autoupdate = "disabled";
742 }
4c067847
SS
743
744 # Check if we are going to add a new provider.
745 if ($cgiparams{'PROVIDERS'} eq "$Lang::tr{'add'}") {
746 # Loop through the hash of used providers.
747 foreach my $id ( keys %used_providers) {
748 # Check if the choosen provider is already in use.
749 if ($used_providers{$id}[0] eq "$provider") {
750 # XXX - add to language file.
751 # Assign error message.
752 $errormessage = "The choosen provider is already in use.";
753 }
754 }
755 }
756
757 # Check if the provider requires a subscription code.
758 if ($IDS::Ruleset::Providers{$provider}{'requires_subscription'} eq "True") {
759 # Check if an subscription code has been provided.
760 if ($subscription_code) {
761 # Check if the code contains unallowed chars.
762 unless ($subscription_code =~ /^[a-z0-9]+$/) {
763 $errormessage = $Lang::tr{'invalid input for subscription code'};
764 }
765 } else {
766 # Print an error message, that an subsription code is required for this
767 # provider.
768 $errormessage = $Lang::tr{'ids subscription code required'};
769 }
770 }
771
772 # Go further if there was no error.
773 if ($errormessage eq '') {
774 my $id;
775 my $status;
776
777 # Check if we should edit an existing entry and got an ID.
778 if (($cgiparams{'PROVIDERS'} eq $Lang::tr{'update'}) && ($cgiparams{'ID'})) {
779 # Assin the provided id.
780 $id = $cgiparams{'ID'};
781
782 # Undef the given ID.
783 undef($cgiparams{'ID'});
784
785 # Grab the configured status of the corresponding entry.
786 $status = $used_providers{$id}[3];
787 } else {
788 # Each newly added entry automatically should be enabled.
789 $status = "enabled";
790
791 # Generate the ID for the new entry.
792 #
793 # Sort the keys by their ID and store them in an array.
794 my @keys = sort { $a <=> $b } keys %used_providers;
795
796 # Reverse the key array.
797 my @reversed = reverse(@keys);
798
799 # Obtain the last used id.
800 my $last_id = @reversed[0];
801
802 # Increase the last id by one and use it as id for the new entry.
803 $id = ++$last_id;
804 }
805
806 # Add/Modify the entry to/in the used providers hash..
807 $used_providers{$id} = ["$provider", "$subscription_code", "$status_autoupdate", "$status"];
808
809 # Write the changed hash to the providers settings file.
810 &General::writehasharray($IDS::providers_settings_file, \%used_providers);
811
b734df0e
SS
812 # Check if a new provider will be added.
813 if ($cgiparams{'PROVIDERS'} eq $Lang::tr{'add'}) {
814 # Lock the webpage and print notice about downloading
815 # a new ruleset.
816 &working_notice("$Lang::tr{'ids working'}");
817
818 # Download the ruleset.
819 &IDS::downloadruleset($provider);
820
821 # Extract the ruleset
822 &IDS::extractruleset($provider);
823
824 # Move the ruleset.
825 &IDS::move_tmp_ruleset();
826
827 # Cleanup temporary directory.
828 &IDS::cleanup_tmp_directory();
829
ddaf8ae1
SS
830 # Create new empty file for used rulefiles
831 # for this provider.
832 &IDS::write_used_provider_rulefiles_file($provider);
833
b734df0e
SS
834 # Perform a reload of the page.
835 &reload();
836 }
837
4c067847
SS
838 # Undefine providers flag.
839 undef($cgiparams{'PROVIDERS'});
840 }
73eb03a3
SS
841
842## Toggle Enabled/Disabled for an existing provider.
843#
844} elsif ($cgiparams{'PROVIDERS'} eq $Lang::tr{'toggle enable disable'}) {
845 my %used_providers = ();
846
847 # Only go further, if an ID has been passed.
848 if ($cgiparams{'ID'}) {
849 # Assign the given ID.
850 my $id = $cgiparams{'ID'};
851
852 # Undef the given ID.
853 undef($cgiparams{'ID'});
854
855 # Read-in file which contains the provider settings.
856 &General::readhasharray($IDS::providers_settings_file, \%used_providers);
857
858 # Grab the configured status of the corresponding entry.
859 my $status = $used_providers{$id}[3];
860
861 # Switch the status.
862 if ($status eq "enabled") {
863 $status = "disabled";
864 } else {
865 $status = "enabled";
866 }
867
868 # Modify the status of the existing entry.
869 $used_providers{$id} = ["$used_providers{$id}[0]", "$used_providers{$id}[1]", "$used_providers{$id}[2]", "$status"];
870
871 # Write the changed hash to the providers settings file.
872 &General::writehasharray($IDS::providers_settings_file, \%used_providers);
873
874 # XXX - The ruleset needs to be regenerated
875 # XXX - Suricata requires a reload or if the last provider
876 # has been disabled suricata needs to be stopped.
877 # Check if the IDS is running.
878 #if(&IDS::ids_is_running()) {
879 # # Call suricatactrl to perform a reload.
880 # &IDS::call_suricatactrl("reload");
881 #}
882
883 # Undefine providers flag.
884 undef($cgiparams{'PROVIDERS'});
885 }
886
887## Remove provider from the list of used providers.
888#
889} elsif ($cgiparams{'PROVIDERS'} eq $Lang::tr{'remove'}) {
890 my %used_providers = ();
891
892 # Read-in provider settings file.
893 &General::readhasharray($IDS::providers_settings_file, \%used_providers);
894
895 # Drop entry from the hash.
896 delete($used_providers{$cgiparams{'ID'}});
897
898 # Undef the given ID.
899 undef($cgiparams{'ID'});
900
901 # Write the changed hash to the provide settings file.
902 &General::writehasharray($IDS::providers_settings_file, \%used_providers);
903
904 # XXX - The ruleset of the provider needs to be dropped.
905 # XXX - The remain rulest of suricata needs to be regenerated.
906 # XXX - Suricata requires a reload or if the last provider has
907 # been removed it has to be stopped.
908 # Check if the IDS is running.
909 #if(&IDS::ids_is_running()) {
910 # Call suricatactrl to perform a reload.
911 # &IDS::call_suricatactrl("reload");
912 #}
913
914 # Undefine providers flag.
915 undef($cgiparams{'PROVIDERS'});
ac1cfefa
MT
916}
917
ac1cfefa
MT
918&Header::openpage($Lang::tr{'intrusion detection system'}, 1, '');
919
2bbe6ede 920&Header::openbigbox('100%', 'left', '', $errormessage);
e0cec9fe 921
2bbe6ede 922&show_display_error_message();
0d34a479 923
2bbe6ede
SS
924if ($cgiparams{'RULESET'} eq "$Lang::tr{'ids customize ruleset'}" ) {
925 &show_customize_ruleset();
2f252efa
SS
926} elsif ($cgiparams{'PROVIDERS'} ne "") {
927 &show_add_provider();
2bbe6ede
SS
928} else {
929 &show_mainpage();
930}
029b8ed2 931
2bbe6ede
SS
932&Header::closebigbox();
933&Header::closepage();
e0cec9fe 934
2bbe6ede
SS
935#
936## Tiny function to show if a error message happened.
937#
938sub show_display_error_message() {
939 if ($errormessage) {
940 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
941 print "<class name='base'>$errormessage\n";
942 print "&nbsp;</class>\n";
943 &Header::closebox();
944 }
945}
e0cec9fe 946
2bbe6ede
SS
947#
948## Function to display the main IDS page.
949#
950sub show_mainpage() {
aba3cbe5 951 # Read-in idssettings and provider settings.
2bbe6ede 952 &General::readhash("$IDS::ids_settings_file", \%idssettings);
aba3cbe5 953 &General::readhasharray("$IDS::providers_settings_file", \%used_providers);
2bbe6ede
SS
954
955 # If no autoupdate intervall has been configured yet, set default value.
77351a6b 956 unless(exists($idssettings{'AUTOUPDATE_INTERVAL'})) {
2bbe6ede 957 # Set default to "weekly".
77351a6b 958 $idssettings{'AUTOUPDATE_INTERVAL'} = 'weekly';
17726644 959 }
2bbe6ede
SS
960
961 # Read-in ignored hosts.
962 &General::readhasharray("$IDS::settingsdir/ignored", \%ignored);
963
964 $checked{'ENABLE_IDS'}{'off'} = '';
965 $checked{'ENABLE_IDS'}{'on'} = '';
966 $checked{'ENABLE_IDS'}{$idssettings{'ENABLE_IDS'}} = "checked='checked'";
967 $checked{'MONITOR_TRAFFIC_ONLY'}{'off'} = '';
968 $checked{'MONITOR_TRAFFIC_ONLY'}{'on'} = '';
969 $checked{'MONITOR_TRAFFIC_ONLY'}{$idssettings{'MONITOR_TRAFFIC_ONLY'}} = "checked='checked'";
2bbe6ede
SS
970 $selected{'AUTOUPDATE_INTERVAL'}{'off'} = '';
971 $selected{'AUTOUPDATE_INTERVAL'}{'daily'} = '';
972 $selected{'AUTOUPDATE_INTERVAL'}{'weekly'} = '';
2f252efa 973 $selected{'AUTOUPDATE_INTERVAL'}{$idssettings{'AUTOUPDATE_INTERVAL'}} = "selected='selected'";
17726644 974
2bbe6ede
SS
975 # Draw current state of the IDS
976 &Header::openbox('100%', 'left', $Lang::tr{'intrusion detection system'});
1504a375 977
2bbe6ede
SS
978 # Check if the IDS is running and obtain the process-id.
979 my $pid = &IDS::ids_is_running();
87660964 980
2bbe6ede
SS
981 # Display some useful information, if suricata daemon is running.
982 if ($pid) {
983 # Gather used memory.
984 my $memory = &get_memory_usage($pid);
87660964 985
2bbe6ede
SS
986 print <<END;
987 <table width='95%' cellspacing='0' class='tbl'>
988 <tr>
989 <th bgcolor='$color{'color20'}' colspan='3' align='left'><strong>$Lang::tr{'intrusion detection'}</strong></th>
990 </tr>
87660964 991
2bbe6ede
SS
992 <tr>
993 <td class='base'>$Lang::tr{'guardian daemon'}</td>
994 <td align='center' colspan='2' width='75%' bgcolor='${Header::colourgreen}'><font color='white'><strong>$Lang::tr{'running'}</strong></font></td>
995 </tr>
87660964 996
2bbe6ede
SS
997 <tr>
998 <td class='base'></td>
999 <td bgcolor='$color{'color20'}' align='center'><strong>PID</strong></td>
1000 <td bgcolor='$color{'color20'}' align='center'><strong>$Lang::tr{'memory'}</strong></td>
1001 </tr>
87660964 1002
2bbe6ede
SS
1003 <tr>
1004 <td class='base'></td>
1005 <td bgcolor='$color{'color22'}' align='center'>$pid</td>
1006 <td bgcolor='$color{'color22'}' align='center'>$memory KB</td>
1007 </tr>
1008 </table>
87660964 1009END
2bbe6ede
SS
1010 } else {
1011 # Otherwise display a hint that the service is not launched.
1012 print <<END;
1013 <table width='95%' cellspacing='0' class='tbl'>
1014 <tr>
1015 <th bgcolor='$color{'color20'}' colspan='3' align='left'><strong>$Lang::tr{'intrusion detection'}</strong></th>
1016 </tr>
87660964 1017
2bbe6ede
SS
1018 <tr>
1019 <td class='base'>$Lang::tr{'guardian daemon'}</td>
1020 <td align='center' width='75%' bgcolor='${Header::colourred}'><font color='white'><strong>$Lang::tr{'stopped'}</strong></font></td>
1021 </tr>
1022 </table>
87660964 1023END
2bbe6ede 1024 }
87660964 1025
2f252efa
SS
1026 # Only show this area, if at least one ruleset provider is configured.
1027 if (%used_providers) {
674912fc 1028
2bbe6ede 1029print <<END
674912fc 1030
2bbe6ede 1031 <br><br><h2>$Lang::tr{'settings'}</h2>
1286e0d4 1032
2bbe6ede
SS
1033 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1034 <table width='100%' border='0'>
1035 <tr>
1036 <td class='base' colspan='2'>
1037 <input type='checkbox' name='ENABLE_IDS' $checked{'ENABLE_IDS'}{'on'}>&nbsp;$Lang::tr{'ids enable'}
1038 </td>
cf02bf2f 1039
2bbe6ede
SS
1040 <td class='base' colspan='2'>
1041 <input type='checkbox' name='MONITOR_TRAFFIC_ONLY' $checked{'MONITOR_TRAFFIC_ONLY'}{'on'}>&nbsp;$Lang::tr{'ids monitor traffic only'}
1042 </td>
1043 </tr>
1504a375 1044
2bbe6ede
SS
1045 <tr>
1046 <td><br><br></td>
1047 <td><br><br></td>
1048 <td><br><br></td>
1049 <td><br><br></td>
1050 </tr>
a4ccfcbb 1051
2bbe6ede
SS
1052 <tr>
1053 <td colspan='4'><b>$Lang::tr{'ids monitored interfaces'}</b><br></td>
1054 </tr>
a4ccfcbb 1055
2bbe6ede 1056 <tr>
ac1cfefa
MT
1057END
1058;
1504a375 1059
2bbe6ede
SS
1060 # Loop through the array of available networks and print config options.
1061 foreach my $zone (@network_zones) {
1062 my $checked_input;
1063 my $checked_forward;
1504a375 1064
2bbe6ede
SS
1065 # Convert current zone name to upper case.
1066 my $zone_upper = uc($zone);
1504a375 1067
2bbe6ede
SS
1068 # Set zone name.
1069 my $zone_name = $zone;
53817b89 1070
2bbe6ede
SS
1071 # Dirty hack to get the correct language string for the red zone.
1072 if ($zone eq "red") {
1073 $zone_name = "red1";
1074 }
53817b89 1075
2bbe6ede
SS
1076 # Grab checkbox status from settings hash.
1077 if ($idssettings{"ENABLE_IDS_$zone_upper"} eq "on") {
1078 $checked_input = "checked = 'checked'";
1079 }
1504a375 1080
2bbe6ede
SS
1081 print "<td class='base' width='20%'>\n";
1082 print "<input type='checkbox' name='ENABLE_IDS_$zone_upper' $checked_input>\n";
1083 print "&nbsp;$Lang::tr{'enabled on'}<font color='$colourhash{$zone}'> $Lang::tr{$zone_name}</font>\n";
1084 print "</td>\n";
1085 }
1b73b07e 1086
ac1cfefa 1087print <<END
2bbe6ede 1088 </tr>
77351a6b
SS
1089
1090 <tr>
1091 <td><br><br></td>
1092 <td><br><br></td>
1093 <td><br><br></td>
1094 <td><br><br></td>
1095 </tr>
1096
1097 <tr>
1098 <td colspan='4'><b>$Lang::tr{'ids automatic rules update'}</b></td>
1099 </tr>
1100
1101 <tr>
1102 <td>
1103 <select name='AUTOUPDATE_INTERVAL'>
1104 <option value='off' $selected{'AUTOUPDATE_INTERVAL'}{'off'} >- $Lang::tr{'Disabled'} -</option>
1105 <option value='daily' $selected{'AUTOUPDATE_INTERVAL'}{'daily'} >$Lang::tr{'Daily'}</option>
1106 <option value='weekly' $selected{'AUTOUPDATE_INTERVAL'}{'weekly'} >$Lang::tr{'Weekly'}</option>
1107 </select>
1108 </td>
1109 </tr>
2bbe6ede 1110 </table>
1504a375 1111
2bbe6ede 1112 <br><br>
ea5c8eeb 1113
2bbe6ede
SS
1114 <table width='100%'>
1115 <tr>
1116 <td align='right'><input type='submit' name='IDS' value='$Lang::tr{'save'}' /></td>
1117 </tr>
1118 </table>
1119 </form>
ea5c8eeb
SS
1120END
1121;
1122
2bbe6ede 1123 }
cf02bf2f 1124
2bbe6ede 1125 &Header::closebox();
ea5c8eeb 1126
2f252efa
SS
1127 #
1128 # Used Ruleset Providers section.
1129 #
2bbe6ede 1130 &Header::openbox('100%', 'center', $Lang::tr{'ids ruleset settings'});
ea5c8eeb 1131
2f252efa
SS
1132print <<END;
1133 <table width='100%' border='0'>
1134 <tr>
1135 <td class='base' bgcolor='$color{'color20'}'><b>$Lang::tr{'ids provider'}</b></td>
1136 <td class='base' bgcolor='$color{'color20'}'><b>$Lang::tr{'date'}</b></td>
1137 <td class='base' bgcolor='$color{'color20'}' align='center'><b>$Lang::tr{'ids autoupdates'}</b></td>
1138 <td class='base' bgcolor='$color{'color20'}'></td>
1139 <td class='base' colspan='3' bgcolor='$color{'color20'}'></td>
1140 </tr>
3e12c6e6 1141END
2f252efa
SS
1142 # Check if some providers has been configured.
1143 if (keys (%used_providers)) {
1144 my $col = "";
3e12c6e6 1145
2f252efa 1146 # Loop through all entries of the hash.
2f252efa
SS
1147 foreach my $id (sort keys(%used_providers)) {
1148 # Assign data array positions to some nice variable names.
1149 my $provider = $used_providers{$id}[0];
1150 my $provider_name = &get_provider_name($provider);
3e12c6e6 1151
2f252efa
SS
1152 #XXX my $rulesdate = &IDS::get_ruleset_date($provider);
1153 my $rulesdate;
1154
1155 my $subscription_code = $used_providers{$id}[1];
1156 my $autoupdate_status = $used_providers{$id}[2];
1157 my $status = $used_providers{$id}[3];
1158
1159 # Check if the item number is even or not.
1160 if ($id % 2) {
1161 $col="bgcolor='$color{'color22'}'";
1162 } else {
1163 $col="bgcolor='$color{'color20'}'";
2bbe6ede 1164 }
1504a375 1165
2f252efa
SS
1166 # Choose icons for the checkboxes.
1167 my $status_gif;
1168 my $status_gdesc;
1169 my $autoupdate_status_gif;
1170 my $autoupdate_status_gdesc;
1504a375 1171
2f252efa
SS
1172 # Check if the status is enabled and select the correct image and description.
1173 if ($status eq 'enabled' ) {
1174 $status_gif = 'on.gif';
1175 $status_gdesc = $Lang::tr{'click to disable'};
1176 } else {
1177 $status_gif = 'off.gif';
1178 $status_gdesc = $Lang::tr{'click to enable'};
1179 }
1504a375 1180
2f252efa
SS
1181 # Check if the autoupdate status is enabled and select the correct image and description.
1182 if ($autoupdate_status eq 'enabled') {
1183 $autoupdate_status_gif = 'on.gif';
1184 $autoupdate_status_gdesc = $Lang::tr{'click to disable'};
1185 } else {
1186 $autoupdate_status_gif = 'off.gif';
1187 $autoupdate_status_gdesc = $Lang::tr{'click to enable'};
1188 }
2bbe6ede 1189
2f252efa
SS
1190print <<END;
1191 <tr>
1192 <td width='33%' class='base' $col>$provider_name</td>
1193 <td width='30%' class='base' $col>$rulesdate</td>
1194
1195 <td align='center' $col>
1196 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1197 <input type='hidden' name='AUTOUPDATE' value='$Lang::tr{'toggle enable disable'}' />
1198 <input type='image' name='$Lang::tr{'toggle enable disable'}' src='/images/$autoupdate_status_gif' alt='$autoupdate_status_gdesc' title='$autoupdate_status_gdesc' />
1199 <input type='hidden' name='ID' value='$id' />
1200 </form>
1201 </td>
1202
1203 <td align='center' $col>
7323c72d 1204 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
2f252efa
SS
1205 <input type='hidden' name='PROVIDERS' value='$Lang::tr{'toggle enable disable'}'>
1206 <input type='image' name='$Lang::tr{'toggle enable disable'}' src='/images/$status_gif' alt='$status_gdesc' title='$status_gdesc'>
1207 <input type='hidden' name='ID' value='$id'>
1208 </form>
1209 </td>
1210
1211 <td align='center' $col>
1212 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1213 <input type='hidden' name='PROVIDERS' value='$Lang::tr{'edit'}'>
1214 <input type='image' name='$Lang::tr{'edit'}' src='/images/edit.gif' alt='$Lang::tr{'edit'}' title='$Lang::tr{'edit'}'>
1215 <input type='hidden' name='ID' value='$id'>
1216 </form>
1217 </td>
1504a375 1218
2f252efa
SS
1219 <td align='center' $col>
1220 <form method='post' name='$provider' action='$ENV{'SCRIPT_NAME'}'>
1221 <input type='image' name='$Lang::tr{'remove'}' src='/images/delete.gif' title='$Lang::tr{'remove'}' alt='$Lang::tr{'remove'}'>
1222 <input type='hidden' name='ID' value='$id'>
1223 <input type='hidden' name='PROVIDERS' value='$Lang::tr{'remove'}'>
1224 </form>
1225 </td>
1226 </tr>
ea5c8eeb 1227END
2bbe6ede 1228 }
2f252efa
SS
1229
1230 } else {
1231 # Print notice that currently no hosts are ignored.
1232 print "<tr>\n";
1233 print "<td class='base' colspan='2'>$Lang::tr{'guardian no entries'}</td>\n";
1234 print "</tr>\n";
1235 }
1236
1237 print "</table>\n";
1238
1239 # Section to add new elements or edit existing ones.
ea5c8eeb 1240print <<END;
2f252efa
SS
1241 <br>
1242 <hr>
1243 <br>
1504a375 1244
2f252efa
SS
1245 <div align='right'>
1246 <table width='100%'>
1247 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1248 <tr>
1249END
1250
1251 # Only show this button if a ruleset provider is configured.
1252 if (%used_providers) {
1253 print "<input type='submit' name='RULESET' value='$Lang::tr{'ids customize ruleset'}'>\n";
1254 }
1255print <<END;
1256 <input type='submit' name='PROVIDERS' value='$Lang::tr{'ids add provider'}'>
1257 </tr>
1258 </form>
2bbe6ede 1259 </table>
2f252efa 1260 </div>
ac1cfefa 1261END
ac1cfefa 1262
2bbe6ede 1263 &Header::closebox();
fbfdb241 1264
2bbe6ede
SS
1265 #
1266 # Whitelist / Ignorelist
1267 #
1268 &Header::openbox('100%', 'center', $Lang::tr{'ids ignored hosts'});
b7e29743 1269
2bbe6ede 1270 print <<END;
b7e29743
SS
1271 <table width='100%'>
1272 <tr>
1273 <td class='base' bgcolor='$color{'color20'}'><b>$Lang::tr{'ip address'}</b></td>
1274 <td class='base' bgcolor='$color{'color20'}'><b>$Lang::tr{'remark'}</b></td>
1275 <td class='base' colspan='3' bgcolor='$color{'color20'}'></td>
1276 </tr>
1277END
1278 # Check if some hosts have been added to be ignored.
1279 if (keys (%ignored)) {
1280 my $col = "";
1281
1282 # Loop through all entries of the hash.
1283 while( (my $key) = each %ignored) {
1284 # Assign data array positions to some nice variable names.
1285 my $address = $ignored{$key}[0];
1286 my $remark = $ignored{$key}[1];
1287 my $status = $ignored{$key}[2];
1288
1289 # Check if the key (id) number is even or not.
1290 if ($cgiparams{'ID'} eq $key) {
1291 $col="bgcolor='${Header::colouryellow}'";
1292 } elsif ($key % 2) {
1293 $col="bgcolor='$color{'color22'}'";
1294 } else {
1295 $col="bgcolor='$color{'color20'}'";
1296 }
1297
1298 # Choose icon for the checkbox.
1299 my $gif;
1300 my $gdesc;
1301
1302 # Check if the status is enabled and select the correct image and description.
1303 if ($status eq 'enabled' ) {
1304 $gif = 'on.gif';
1305 $gdesc = $Lang::tr{'click to disable'};
1306 } else {
1307 $gif = 'off.gif';
1308 $gdesc = $Lang::tr{'click to enable'};
1309 }
1310
1311print <<END;
1312 <tr>
1313 <td width='20%' class='base' $col>$address</td>
1314 <td width='65%' class='base' $col>$remark</td>
1315
1316 <td align='center' $col>
1317 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
2f252efa
SS
1318 <input type='hidden' name='WHITELIST' value='$Lang::tr{'toggle enable disable'}'>
1319 <input type='image' name='$Lang::tr{'toggle enable disable'}' src='/images/$gif' alt='$gdesc' title='$gdesc'>
1320 <input type='hidden' name='ID' value='$key'>
b7e29743
SS
1321 </form>
1322 </td>
1323
1324 <td align='center' $col>
1325 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
2f252efa
SS
1326 <input type='hidden' name='WHITELIST' value='$Lang::tr{'edit'}'>
1327 <input type='image' name='$Lang::tr{'edit'}' src='/images/edit.gif' alt='$Lang::tr{'edit'}' title='$Lang::tr{'edit'}'>
1328 <input type='hidden' name='ID' value='$key'>
b7e29743
SS
1329 </form>
1330 </td>
1331
1332 <td align='center' $col>
1333 <form method='post' name='$key' action='$ENV{'SCRIPT_NAME'}'>
1334 <input type='image' name='$Lang::tr{'remove'}' src='/images/delete.gif' title='$Lang::tr{'remove'}' alt='$Lang::tr{'remove'}'>
1335 <input type='hidden' name='ID' value='$key'>
1336 <input type='hidden' name='WHITELIST' value='$Lang::tr{'remove'}'>
1337 </form>
2bbe6ede
SS
1338 </td>
1339 </tr>
b7e29743 1340END
2bbe6ede
SS
1341 }
1342 } else {
1343 # Print notice that currently no hosts are ignored.
1344 print "<tr>\n";
1345 print "<td class='base' colspan='2'>$Lang::tr{'guardian no entries'}</td>\n";
1346 print "</tr>\n";
b7e29743 1347 }
b7e29743 1348
2bbe6ede 1349 print "</table>\n";
b7e29743 1350
2bbe6ede 1351 # Section to add new elements or edit existing ones.
b7e29743 1352print <<END;
2bbe6ede
SS
1353 <br>
1354 <hr>
1355 <br>
1356
1357 <div align='center'>
1358 <table width='100%'>
b7e29743
SS
1359END
1360
2bbe6ede
SS
1361 # Assign correct headline and button text.
1362 my $buttontext;
1363 my $entry_address;
1364 my $entry_remark;
b7e29743 1365
2bbe6ede
SS
1366 # Check if an ID (key) has been given, in this case an existing entry should be edited.
1367 if ($cgiparams{'ID'} ne '') {
1368 $buttontext = $Lang::tr{'update'};
1369 print "<tr><td class='boldbase' colspan='3'><b>$Lang::tr{'update'}</b></td></tr>\n";
b7e29743 1370
2bbe6ede
SS
1371 # Grab address and remark for the given key.
1372 $entry_address = $ignored{$cgiparams{'ID'}}[0];
1373 $entry_remark = $ignored{$cgiparams{'ID'}}[1];
1374 } else {
1375 $buttontext = $Lang::tr{'add'};
1376 print "<tr><td class='boldbase' colspan='3'><b>$Lang::tr{'dnsforward add a new entry'}</b></td></tr>\n";
1377 }
b7e29743
SS
1378
1379print <<END;
2bbe6ede
SS
1380 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1381 <input type='hidden' name='ID' value='$cgiparams{'ID'}'>
1382 <tr>
1383 <td width='30%'>$Lang::tr{'ip address'}: </td>
1384 <td width='50%'><input type='text' name='IGNORE_ENTRY_ADDRESS' value='$entry_address' size='24' /></td>
b7e29743 1385
2bbe6ede
SS
1386 <td width='30%'>$Lang::tr{'remark'}: </td>
1387 <td wicth='50%'><input type='text' name=IGNORE_ENTRY_REMARK value='$entry_remark' size='24' /></td>
1388 <td align='center' width='20%'><input type='submit' name='WHITELIST' value='$buttontext' /></td>
1389 </tr>
1390 </form>
1391 </table>
1392 </div>
b7e29743
SS
1393END
1394
2bbe6ede 1395 &Header::closebox();
fed57fe7
SS
1396}
1397
fed57fe7
SS
1398#
1399## Function to show the customize ruleset section.
1400#
1401sub show_customize_ruleset() {
2bbe6ede
SS
1402 ### Java Script ###
1403 print"<script>\n";
1404
1405 # Java script variable declaration for show and hide.
1406 print"var show = \"$Lang::tr{'ids show'}\"\;\n";
1407 print"var hide = \"$Lang::tr{'ids hide'}\"\;\n";
1408
1409print <<END
1410 // Tiny java script function to show/hide the rules
1411 // of a given category.
1412 function showhide(tblname) {
1413 \$("#" + tblname).toggle();
1414
1415 // Get current content of the span element.
1416 var content = document.getElementById("span_" + tblname);
1417
1418 if (content.innerHTML === show) {
1419 content.innerHTML = hide;
1420 } else {
1421 content.innerHTML = show;
1422 }
1423 }
1424 </script>
1425END
1426;
87df37da 1427 &Header::openbox('100%', 'LEFT', "$Lang::tr{'intrusion detection system rules'}" );
80bcd4dd 1428 print"<form method='POST' action='$ENV{'SCRIPT_NAME'}'>\n";
ce0e83b3 1429
80bcd4dd
SS
1430 # Output display table for rule files
1431 print "<table width='100%'>\n";
f7fcd1c0 1432
80bcd4dd
SS
1433 # Loop over each rule file
1434 foreach my $rulefile (sort keys(%idsrules)) {
1435 my $rulechecked = '';
3ffee04b 1436
80bcd4dd
SS
1437 # Check if rule file is enabled
1438 if ($idsrules{$rulefile}{'Rulefile'}{'State'} eq 'on') {
1439 $rulechecked = 'CHECKED';
1440 }
1441
0a1bba1a
SS
1442 # Convert rulefile name into category name.
1443 my $categoryname = &_rulefile_to_category($rulefile);
1444
80bcd4dd
SS
1445 # Table and rows for the rule files.
1446 print"<tr>\n";
1447 print"<td class='base' width='5%'>\n";
1448 print"<input type='checkbox' name='$rulefile' $rulechecked>\n";
1449 print"</td>\n";
1450 print"<td class='base' width='90%'><b>$rulefile</b></td>\n";
1451 print"<td class='base' width='5%' align='right'>\n";
e0cec9fe 1452 print"<a href=\"javascript:showhide('$categoryname')\"><span id='span_$categoryname'>$Lang::tr{'ids show'}</span></a>\n";
80bcd4dd
SS
1453 print"</td>\n";
1454 print"</tr>\n";
1455
1456 # Rows which will be hidden per default and will contain the single rules.
0a1bba1a 1457 print"<tr style='display:none' id='$categoryname'>\n";
80bcd4dd 1458 print"<td colspan='3'>\n";
17726644 1459
f7fcd1c0 1460 # Local vars
80bcd4dd
SS
1461 my $lines;
1462 my $rows;
1463 my $col;
f9c2147d 1464
80bcd4dd
SS
1465 # New table for the single rules.
1466 print "<table width='100%'>\n";
e5738079 1467
80bcd4dd
SS
1468 # Loop over rule file rules
1469 foreach my $sid (sort {$a <=> $b} keys(%{$idsrules{$rulefile}})) {
1470 # Local vars
1471 my $ruledefchecked = '';
3ffee04b 1472
80bcd4dd
SS
1473 # Skip rulefile itself.
1474 next if ($sid eq "Rulefile");
f7fcd1c0 1475
80bcd4dd
SS
1476 # If 2 rules have been displayed, start a new row
1477 if (($lines % 2) == 0) {
1478 print "</tr><tr>\n";
1479
1480 # Increase rows by once.
1481 $rows++;
1482 }
1483
1484 # Colour lines.
1485 if ($rows % 2) {
1486 $col="bgcolor='$color{'color20'}'";
1487 } else {
1488 $col="bgcolor='$color{'color22'}'";
1489 }
f7fcd1c0 1490
80bcd4dd
SS
1491 # Set rule state
1492 if ($idsrules{$rulefile}{$sid}{'State'} eq 'on') {
1493 $ruledefchecked = 'CHECKED';
1494 }
1495
1496 # Create rule checkbox and display rule description
1497 print "<td class='base' width='5%' align='right' $col>\n";
1498 print "<input type='checkbox' NAME='$sid' $ruledefchecked>\n";
1499 print "</td>\n";
1500 print "<td class='base' width='45%' $col>$idsrules{$rulefile}{$sid}{'Description'}</td>";
1501
1502 # Increment rule count
1503 $lines++;
f7fcd1c0 1504 }
3ffee04b 1505
80bcd4dd
SS
1506 # If do not have a second rule for row, create empty cell
1507 if (($lines % 2) != 0) {
1508 print "<td class='base'></td>";
1509 }
17726644 1510
80bcd4dd
SS
1511 # Close display table
1512 print "</tr></table></td></tr>";
f7fcd1c0
SS
1513 }
1514
1515 # Close display table
80bcd4dd 1516 print "</table>";
17726644 1517
9268cddf 1518 print <<END
2999f1d2
CS
1519<table width='100%'>
1520<tr>
4efc8ccd
SS
1521 <td width='100%' align='right'>
1522 <input type='submit' value='$Lang::tr{'fwhost back'}'>
1523 <input type='submit' name='RULESET' value='$Lang::tr{'ids apply'}'>
1524 </td>
2999f1d2
CS
1525</tr>
1526</table>
298723b9 1527</form>
3ffee04b
CS
1528END
1529;
9268cddf
MT
1530 &Header::closebox();
1531 }
80bcd4dd
SS
1532}
1533
2f252efa
SS
1534#
1535## Function to show section for add/edit a provider.
1536#
1537sub show_add_provider() {
aba3cbe5 1538 my %used_providers = ();
2f252efa
SS
1539 my @subscription_providers;
1540
aba3cbe5
SS
1541 # Read -in providers settings file.
1542 &General::readhasharray("$IDS::providers_settings_file", \%used_providers);
1543
2f252efa
SS
1544 # Get all supported ruleset providers.
1545 my @ruleset_providers = &IDS::get_ruleset_providers();
1546
1547 ### Java Script ###
1548 print "<script>\n";
1549
1550 # Generate Java Script Object which contains the URL of the providers.
1551 print "\t// Object, which contains the webpages of the ruleset providers.\n";
1552 print "\tvar url = {\n";
1553
1554 # Loop through the array of supported providers.
1555 foreach my $provider (@ruleset_providers) {
1556 # Check if the provider requires a subscription.
1557 if ($IDS::Ruleset::Providers{$provider}{'requires_subscription'} eq "True") {
1558 # Add the provider to the array of subscription_providers.
1559 push(@subscription_providers, $provider);
1560 }
1561
1562 # Grab the URL for the provider.
1563 my $url = $IDS::Ruleset::Providers{$provider}{'website'};
1564
1565 # Print the URL to the Java Script Object.
1566 print "\t\t$provider: \"$url\"\,\n";
1567 }
1568
1569 # Close the Java Script Object declaration.
1570 print "\t}\;\n\n";
1571
1572 # Generate Java Script Array which contains the provider that requires a subscription.
1573 my $line = "";
1574 $line = join("', '", @subscription_providers);
1575
1576 print "\t// Array which contains the providers that requires a subscription.\n";
1577 print "\tsubscription_provider = ['$line']\;\n\n";
1578
1579print <<END
1580 // Java Script function to swap the text input field for
1581 // entering a subscription code.
1582 var update_provider = function() {
1583 if(inArray(\$('#PROVIDER').val(), subscription_provider)) {
1584 \$('.subscription_code').show();
1585 } else {
1586 \$('.subscription_code').hide();
1587 }
1588
1589 // Call function to change the website url.
1590 change_url(\$('#PROVIDER').val());
1591 };
1592
1593 // Java Script function to check if a given value is part of
1594 // an array.
1595 function inArray(value,array) {
1596 var count=array.length;
1597
1598 for(var i=0;i<count;i++) {
1599 if(array[i]===value){
1600 return true;
1601 }
1602 }
1603
1604 return false;
1605 }
1606
1607 // Tiny function to change the website url based on the selected element in the "PROVIDERS"
1608 // dropdown menu.
1609 function change_url(provider) {
1610 // Get and change the href to the corresponding url.
1611 document.getElementById("website").href = url[provider];
1612 }
1613
1614 // JQuery function to call corresponding function when
1615 // the ruleset provider is changed or the page is loaded for showing/hiding
1616 // the subscription_code area.
1617 \$(document).ready(function() {
1618 \$('#PROVIDER').change(update_provider);
1619 update_provider();
1620 });
1621
1622 </script>
1623END
1624;
1625
1626 &Header::openbox('100%', 'center', $Lang::tr{'ids provider settings'});
1627
1628 # Check if an existing provider should be edited.
1629 if($cgiparams{'PROVIDERS'} eq "$Lang::tr{'edit'}") {
1630 # Check if autoupdate is enabled for this provider.
bb4c30c6 1631 if ($used_providers{$cgiparams{'ID'}}[2] eq "enabled") {
2f252efa
SS
1632 # Set the checkbox to be checked.
1633 $checked{'ENABLE_AUTOUPDATE'} = "checked='checked'";
1634 }
1635 } elsif ($cgiparams{'PROVIDERS'} eq "$Lang::tr{'ids add provider'}") {
1636 # Set the autoupdate to true as default.
1637 $checked{'ENABLE_AUTOUPDATE'} = "checked='checked'";
1638 }
1639
1640print <<END
1641 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1642 <table width='100%' border='0'>
1643 <tr>
1644 <td colspan='2'><b>$Lang::tr{'ids provider'}</b></td>
1645 </tr>
1646
1647 <tr>
1648 <td width='40%'>
1649 <input type='hidden' name='ID' value='$cgiparams{'ID'}'>
1650 <select name='PROVIDER' id='PROVIDER'>
1651END
1652;
1653 # Loop through the array of ruleset providers.
1654 foreach my $provider (@ruleset_providers) {
1655 # Get the provider name.
1656 my $provider_name = &get_provider_name($provider);
1657
1658 # Pre-select the provider if one is given.
1659 if (($used_providers{$cgiparams{'ID'}}[0] eq "$provider") || ($cgiparams{'PROVIDER'} eq "$provider")) {
1660 $selected{$provider} = "selected='selected'";
1661 }
1662
1663 # Add the provider to the dropdown menu.
1664 print "<option value='$provider' $selected{$provider}>$provider_name</option>\n";
1665 }
1666print <<END
1667 </select>
1668 </td>
1669
1670 <td width='60%'>
1671 <b><a id="website" target="_blank" href="#">$Lang::tr{'ids visit provider website'}</a></b>
1672 </td>
1673 </tr>
1674
1675 <tr>
1676 <td colspan='2'><br><br></td>
1677 </tr>
1678
1679 <tr class='subscription_code' style='display:none' id='subscription_code'>
1680 <td colspan='2'>
1681 <table border='0'>
1682 <tr>
1683 <td>
1684 <b>$Lang::tr{'subscription code'}</b>
1685 </td>
1686 </tr>
1687
1688 <tr>
1689 <td>
1690 <input type='text' size='40' name='SUBSCRIPTION_CODE' value='$used_providers{$cgiparams{'ID'}}[1]'>
1691 </td>
1692 </tr>
1693
1694 <tr>
1695 <td><br><br></td>
1696 </tr>
1697 </table>
1698 </td>
1699 </tr>
1700
1701 <tr>
1702 <td colspan='2'>
1703 <input type='checkbox' name='ENABLE_AUTOUPDATE' $checked{'ENABLE_AUTOUPDATE'}>&nbsp;$Lang::tr{'ids enable automatic updates'}
1704 </td>
1705 </tr>
1706
1707 <tr>
1708 <td colspan='2' align='right'>
1709 <input type='submit' value='$Lang::tr{'back'}'>
1710END
1711;
1712 # Check if a provider should be added or edited.
1713 if ($cgiparams{'PROVIDERS'} eq "$Lang::tr{'edit'}") {
1714 # Display button for updating the existing provider.
1715 print "<input type='submit' name='PROVIDERS' value='$Lang::tr{'update'}'>\n";
1716 } else {
1717 # Display button to add the new provider.
1718 print "<input type='submit' name='PROVIDERS' value='$Lang::tr{'add'}'>\n";
1719 }
1720print <<END
1721 </td>
1722 </tr>
1723 </table>
1724 </form>
1725END
1726;
1727 &Header::closebox();
1728}
1729
27760092
SS
1730#
1731## A function to display a notice, to lock the webpage and
1732## tell the user which action currently will be performed.
1733#
1734sub working_notice ($) {
1735 my ($message) = @_;
1736
1737 &Header::openpage($Lang::tr{'intrusion detection system'}, 1, '');
1738 &Header::openbigbox('100%', 'left', '', $errormessage);
1739 &Header::openbox( 'Waiting', 1,);
1740 print <<END;
1741 <table>
1742 <tr>
1743 <td><img src='/images/indicator.gif' alt='$Lang::tr{'aktiv'}' /></td>
1744 <td>$message</td>
1745 </tr>
1746 </table>
1747END
1748 &Header::closebox();
1749 &Header::closebigbox();
1750 &Header::closepage();
1751}
1752
3983aebd
SS
1753#
1754## A tiny function to perform a reload of the webpage after one second.
1755#
1756sub reload () {
1757 print "<meta http-equiv='refresh' content='1'>\n";
1758
1759 # Stop the script.
1760 exit;
a70d269a
SS
1761}
1762
25f5cb0d
SS
1763#
1764## Private function to read-in and parse rules of a given rulefile.
1765#
1766## The given file will be read, parsed and all valid rules will be stored by ID,
9d18656b 1767## message/description and it's state in the idsrules hash.
25f5cb0d 1768#
3da6e01b
SS
1769sub readrulesfile ($) {
1770 my $rulefile = shift;
1771
1772 # Open rule file and read in contents
298ef5ba 1773 open(RULEFILE, "$IDS::rulespath/$rulefile") or die "Unable to read $rulefile!";
3da6e01b
SS
1774
1775 # Store file content in an array.
1776 my @lines = <RULEFILE>;
1777
1778 # Close file.
1779 close(RULEFILE);
1780
1781 # Loop over rule file contents
1782 foreach my $line (@lines) {
1783 # Remove whitespaces.
1784 chomp $line;
1785
1786 # Skip blank lines.
1787 next if ($line =~ /^\s*$/);
1788
1789 # Local vars.
1790 my $sid;
1791 my $msg;
1792
1793 # Gather rule sid and message from the ruleline.
1794 if ($line =~ m/.*msg:\"(.*?)\"\; .* sid:(.*?); /) {
1795 $msg = $1;
1796 $sid = $2;
1797
1798 # Check if a rule has been found.
1799 if ($sid && $msg) {
9d18656b
SS
1800 # Add rule to the idsrules hash.
1801 $idsrules{$rulefile}{$sid}{'Description'} = $msg;
3da6e01b
SS
1802
1803 # Grab status of the rule. Check if ruleline starts with a "dash".
1804 if ($line =~ /^\#/) {
1805 # If yes, the rule is disabled.
9d18656b 1806 $idsrules{$rulefile}{$sid}{'State'} = "off";
3da6e01b
SS
1807 } else {
1808 # Otherwise the rule is enabled.
9d18656b 1809 $idsrules{$rulefile}{$sid}{'State'} = "on";
3da6e01b
SS
1810 }
1811 }
1812 }
b7e29743 1813 }
3da6e01b 1814}
87660964 1815
8d2f6b0b
SS
1816#
1817## Function to get the used memory of a given process-id.
1818#
87660964 1819sub get_memory_usage($) {
004b13b7 1820 my ($pid) = @_;
87660964 1821
004b13b7 1822 my $memory = 0;
87660964 1823
004b13b7 1824 # Try to open the status file for the given process-id on the pseudo
87660964 1825 # file system proc.
004b13b7
SS
1826 if (open(FILE, "/proc/$pid/status")) {
1827 # Loop through the entire file.
1828 while (<FILE>) {
1829 # Splitt current line content and store them into variables.
1830 my ($key, $value) = split(":", $_, 2);
1831
1832 # Check if the current key is the one which contains the memory usage.
1833 # The wanted one is VmRSS which contains the Real-memory (resident set)
1834 # of the entire process.
1835 if ($key eq "VmRSS") {
1836 # Found the memory usage add it to the memory variable.
1837 $memory += $value;
1838
1839 # Break the loop.
1840 last;
1841 }
1842 }
87660964
SS
1843
1844 # Close file handle.
004b13b7 1845 close(FILE);
87660964
SS
1846
1847 # Return memory usage.
1848 return $memory;
004b13b7 1849 }
87660964
SS
1850
1851 # If the file could not be open, return nothing.
1852 return;
1853}
1854
a5d61752
SS
1855#
1856## Function to read-in the given enabled or disables sids file.
1857#
1858sub read_enabled_disabled_sids_file($) {
1859 my ($file) = @_;
1860
1861 # Temporary hash to store the sids and their state. It will be
1862 # returned at the end of this function.
1863 my %temphash;
1864
1865 # Open the given filename.
1866 open(FILE, "$file") or die "Could not open $file. $!\n";
1867
1868 # Loop through the file.
1869 while(<FILE>) {
1870 # Remove newlines.
1871 chomp $_;
1872
1873 # Skip blank lines.
1874 next if ($_ =~ /^\s*$/);
1875
1876 # Skip coments.
1877 next if ($_ =~ /^\#/);
1878
1879 # Splitt line into sid and state part.
1880 my ($state, $sid) = split(" ", $_);
1881
1882 # Skip line if the sid is not numeric.
1883 next unless ($sid =~ /\d+/ );
1884
1885 # Check if the sid was enabled.
1886 if ($state eq "enablesid") {
1887 # Add the sid and its state as enabled to the temporary hash.
1888 $temphash{$sid} = "enabled";
1889 # Check if the sid was disabled.
1890 } elsif ($state eq "disablesid") {
1891 # Add the sid and its state as disabled to the temporary hash.
1892 $temphash{$sid} = "disabled";
1893 # Invalid state - skip the current sid and state.
1894 } else {
1895 next;
1896 }
1897 }
1898
1899 # Close filehandle.
1900 close(FILE);
1901
1902 # Return the hash.
1903 return %temphash;
1904}
0a1bba1a 1905
019e5e9b
SS
1906#
1907## Function to get the provider name from the language file or providers file for a given handle.
1908#
1909sub get_provider_name($) {
1910 my ($handle) = @_;
1911 my $provider_name;
1912
1913 # Get the required translation string for the given provider handle.
1914 my $tr_string = $IDS::Ruleset::Providers{$handle}{'tr_string'};
1915
1916 # Check if the translation string is available in the language files.
1917 if ($Lang::tr{$tr_string}) {
1918 # Use the translated string from the language file.
1919 $provider_name = $Lang::tr{$tr_string};
1920 } else {
1921 # Fallback and use the provider summary from the providers file.
1922 $provider_name = $IDS::Ruleset::Providers{$handle}{'summary'};
1923 }
1924
1925 # Return the obtained provider name.
1926 return $provider_name;
1927}
1928
0a1bba1a
SS
1929#
1930## Private function to convert a given rulefile to a category name.
1931## ( No file extension anymore and if the name contained a dot, it
1932## would be replaced by a underline sign.)
1933#
1934sub _rulefile_to_category($) {
1935 my ($filename) = @_;
1936
1937 # Splitt the filename into single chunks and store them in a
1938 # temorary array.
1939 my @parts = split(/\./, $filename);
1940
1941 # Return / Remove last element of the temporary array.
1942 # This removes the file extension.
1943 pop @parts;
1944
1945 # Join together the single elements of the temporary array.
1946 # If these are more than one, use a "underline" for joining.
1947 my $category = join '_', @parts;
1948
1949 # Return the converted filename.
1950 return $category;
1951}