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