]> git.ipfire.org Git - ipfire-2.x.git/blob - html/cgi-bin/ids.cgi
Merge branch 'next' into temp-c164-development
[ipfire-2.x.git] / html / cgi-bin / ids.cgi
1 #!/usr/bin/perl
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2007-2020 IPFire Team <info@ipfire.org> #
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
22 use strict;
23 use experimental 'smartmatch';
24
25 # enable only the following on debugging purpose
26 #use warnings;
27 #use CGI::Carp 'fatalsToBrowser';
28
29 require '/var/ipfire/general-functions.pl';
30 require "${General::swroot}/lang.pl";
31 require "${General::swroot}/header.pl";
32 require "${General::swroot}/ids-functions.pl";
33 require "${General::swroot}/network-functions.pl";
34
35 # Import ruleset providers file.
36 require "$IDS::rulesetsourcesfile";
37
38 my %color = ();
39 my %mainsettings = ();
40 my %idsrules = ();
41 my %idssettings=();
42 my %used_providers=();
43 my %cgiparams=();
44 my %checked=();
45 my %selected=();
46 my %ignored=();
47
48 # Read-in main settings, for language, theme and colors.
49 &General::readhash("${General::swroot}/main/settings", \%mainsettings);
50 &General::readhash("/srv/web/ipfire/html/themes/ipfire/include/colors.txt", \%color);
51
52 # Get the available network zones, based on the config type of the system and store
53 # the list of zones in an array.
54 my @network_zones = &Network::get_available_network_zones();
55
56 # Check if openvpn is started and add it to the array of network zones.
57 if ( -e "/var/run/openvpn.pid") {
58 push(@network_zones, "ovpn");
59 }
60
61 my $errormessage;
62
63 # Create files if they does not exist yet.
64 &IDS::check_and_create_filelayout();
65
66 # Hash which contains the colour code of a network zone.
67 my %colourhash = (
68 'red' => $Header::colourred,
69 'green' => $Header::colourgreen,
70 'blue' => $Header::colourblue,
71 'orange' => $Header::colourorange,
72 'ovpn' => $Header::colourovpn
73 );
74
75 &Header::showhttpheaders();
76
77 #Get GUI values
78 &Header::getcgihash(\%cgiparams);
79
80 ## Add/edit an entry to the ignore file.
81 #
82 if (($cgiparams{'WHITELIST'} eq $Lang::tr{'add'}) || ($cgiparams{'WHITELIST'} eq $Lang::tr{'update'})) {
83
84 # Check if any input has been performed.
85 if ($cgiparams{'IGNORE_ENTRY_ADDRESS'} ne '') {
86
87 # Check if the given input is no valid IP-address or IP-address with subnet, display an error message.
88 if ((!&General::validip($cgiparams{'IGNORE_ENTRY_ADDRESS'})) && (!&General::validipandmask($cgiparams{'IGNORE_ENTRY_ADDRESS'}))) {
89 $errormessage = "$Lang::tr{'guardian invalid address or subnet'}";
90 }
91 } else {
92 $errormessage = "$Lang::tr{'guardian empty input'}";
93 }
94
95 # Go further if there was no error.
96 if ($errormessage eq '') {
97 my %ignored = ();
98 my $id;
99 my $status;
100
101 # Assign hash values.
102 my $new_entry_address = $cgiparams{'IGNORE_ENTRY_ADDRESS'};
103 my $new_entry_remark = $cgiparams{'IGNORE_ENTRY_REMARK'};
104
105 # Read-in ignoredfile.
106 &General::readhasharray($IDS::ignored_file, \%ignored);
107
108 # Check if we should edit an existing entry and got an ID.
109 if (($cgiparams{'WHITELIST'} eq $Lang::tr{'update'}) && ($cgiparams{'ID'})) {
110 # Assin the provided id.
111 $id = $cgiparams{'ID'};
112
113 # Undef the given ID.
114 undef($cgiparams{'ID'});
115
116 # Grab the configured status of the corresponding entry.
117 $status = $ignored{$id}[2];
118 } else {
119 # Each newly added entry automatically should be enabled.
120 $status = "enabled";
121
122 # Generate the ID for the new entry.
123 #
124 # Sort the keys by their ID and store them in an array.
125 my @keys = sort { $a <=> $b } keys %ignored;
126
127 # Reverse the key array.
128 my @reversed = reverse(@keys);
129
130 # Obtain the last used id.
131 my $last_id = @reversed[0];
132
133 # Increase the last id by one and use it as id for the new entry.
134 $id = ++$last_id;
135 }
136
137 # Add/Modify the entry to/in the ignored hash.
138 $ignored{$id} = ["$new_entry_address", "$new_entry_remark", "$status"];
139
140 # Write the changed ignored hash to the ignored file.
141 &General::writehasharray($IDS::ignored_file, \%ignored);
142
143 # Regenerate the ignore file.
144 &IDS::generate_ignore_file();
145 }
146
147 # Check if the IDS is running.
148 if(&IDS::ids_is_running()) {
149 # Call suricatactrl to perform a reload.
150 &IDS::call_suricatactrl("reload");
151 }
152
153 ## Toggle Enabled/Disabled for an existing entry on the ignore list.
154 #
155
156 } elsif ($cgiparams{'WHITELIST'} eq $Lang::tr{'toggle enable disable'}) {
157 my %ignored = ();
158
159 # Only go further, if an ID has been passed.
160 if ($cgiparams{'ID'}) {
161 # Assign the given ID.
162 my $id = $cgiparams{'ID'};
163
164 # Undef the given ID.
165 undef($cgiparams{'ID'});
166
167 # Read-in ignoredfile.
168 &General::readhasharray($IDS::ignored_file, \%ignored);
169
170 # Grab the configured status of the corresponding entry.
171 my $status = $ignored{$id}[2];
172
173 # Switch the status.
174 if ($status eq "disabled") {
175 $status = "enabled";
176 } else {
177 $status = "disabled";
178 }
179
180 # Modify the status of the existing entry.
181 $ignored{$id} = ["$ignored{$id}[0]", "$ignored{$id}[1]", "$status"];
182
183 # Write the changed ignored hash to the ignored file.
184 &General::writehasharray($IDS::ignored_file, \%ignored);
185
186 # Regenerate the ignore file.
187 &IDS::generate_ignore_file();
188
189 # Check if the IDS is running.
190 if(&IDS::ids_is_running()) {
191 # Call suricatactrl to perform a reload.
192 &IDS::call_suricatactrl("reload");
193 }
194 }
195
196 ## Remove entry from ignore list.
197 #
198 } elsif ($cgiparams{'WHITELIST'} eq $Lang::tr{'remove'}) {
199 my %ignored = ();
200
201 # Read-in ignoredfile.
202 &General::readhasharray($IDS::ignored_file, \%ignored);
203
204 # Drop entry from the hash.
205 delete($ignored{$cgiparams{'ID'}});
206
207 # Undef the given ID.
208 undef($cgiparams{'ID'});
209
210 # Write the changed ignored hash to the ignored file.
211 &General::writehasharray($IDS::ignored_file, \%ignored);
212
213 # Regenerate the ignore file.
214 &IDS::generate_ignore_file();
215
216 # Check if the IDS is running.
217 if(&IDS::ids_is_running()) {
218 # Call suricatactrl to perform a reload.
219 &IDS::call_suricatactrl("reload");
220 }
221 }
222
223 # Check if the page is locked, in this case, the ids_page_lock_file exists.
224 if (-e $IDS::ids_page_lock_file) {
225 # Lock the webpage and print notice about autoupgrade of the ruleset
226 # is in progess.
227 &working_notice("$Lang::tr{'ids ruleset autoupdate in progress'}");
228
229 # Loop and check if the file still exists.
230 while(-e $IDS::ids_page_lock_file) {
231 # Sleep for a second and re-check.
232 sleep 1;
233 }
234
235 # Page has been unlocked, perform a reload.
236 &reload();
237 }
238
239 # Check if any error has been stored.
240 if (-e $IDS::storederrorfile) {
241 # Open file to read in the stored error message.
242 open(FILE, "<$IDS::storederrorfile") or die "Could not open $IDS::storederrorfile. $!\n";
243
244 # Read the stored error message.
245 $errormessage = <FILE>;
246
247 # Close file.
248 close (FILE);
249
250 # Delete the file, which is now not longer required.
251 unlink($IDS::storederrorfile);
252 }
253
254 # Gather ruleset details.
255 if ($cgiparams{'RULESET'}) {
256 ## Grab all available rules and store them in the idsrules hash.
257 #
258
259 # Get enabled providers.
260 my @enabled_providers = &IDS::get_enabled_providers();
261
262 # Open rules directory and do a directory listing.
263 opendir(DIR, $IDS::rulespath) or die $!;
264 # Loop through the direcory.
265 while (my $file = readdir(DIR)) {
266
267 # We only want files.
268 next unless (-f "$IDS::rulespath/$file");
269
270 # Ignore empty files.
271 next if (-z "$IDS::rulespath/$file");
272
273 # Use a regular expression to find files ending in .rules
274 next unless ($file =~ m/\.rules$/);
275
276 # Ignore files which are not read-able.
277 next unless (-R "$IDS::rulespath/$file");
278
279 # Skip whitelist rules file.
280 next if( $file eq "whitelist.rules");
281
282 # Splitt vendor from filename.
283 my @filename_parts = split(/-/, $file);
284
285 # Assign vendor name for easy processing.
286 my $vendor = @filename_parts[0];
287
288 # Skip rulefile if the provider is disabled.
289 next unless ($vendor ~~ @enabled_providers);
290
291 # Call subfunction to read-in rulefile and add rules to
292 # the idsrules hash.
293 &readrulesfile("$file");
294 }
295
296 closedir(DIR);
297
298 # Loop through the array of used providers.
299 foreach my $provider (@enabled_providers) {
300 # Gather used rulefiles.
301 my @used_rulesfiles = &IDS::read_used_provider_rulesfiles($provider);
302
303 # Loop through the array of used rulesfiles.
304 foreach my $rulefile (@used_rulesfiles) {
305 # Check if the current rulefile exists in the %idsrules hash.
306 # If not, the file probably does not exist anymore or contains
307 # no rules.
308 if($idsrules{$rulefile}) {
309 # Add the rulefile state to the %idsrules hash.
310 $idsrules{$rulefile}{'Rulefile'}{'State'} = "on";
311 }
312 }
313 }
314 }
315
316 # Save ruleset.
317 if ($cgiparams{'RULESET'} eq $Lang::tr{'ids apply'}) {
318 # Arrays to store which rulefiles have been enabled and will be used.
319 my @enabled_rulefiles;
320
321 # Store if a restart of suricata is required.
322 my $suricata_restart_required;
323
324 # Loop through the hash of idsrules.
325 foreach my $rulefile(keys %idsrules) {
326 # Check if the state of the rulefile has been changed.
327 unless ($cgiparams{$rulefile} eq $idsrules{$rulefile}{'Rulefile'}{'State'}) {
328 # A restart of suricata is required to apply the changes of the used rulefiles.
329 $suricata_restart_required = 1;
330 }
331
332 # Check if the rulefile is enabled.
333 if ($cgiparams{$rulefile} eq "on") {
334 # Add rulefile to the array of enabled rulefiles.
335 push(@enabled_rulefiles, $rulefile);
336
337 # Drop item from cgiparams hash.
338 delete $cgiparams{$rulefile};
339 }
340 }
341
342 # Open oinkmaster main include file for provider modifications.
343 open(OINKM_INCL_FILE, ">", "$IDS::oinkmaster_provider_includes_file") or die "Could not open $IDS::oinkmaster_provider_includes_file. $!\n";
344
345 # Print file header and notice about autogenerated file.
346 print OINKM_INCL_FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
347
348 # Get enabled providers.
349 my @enabled_providers = &IDS::get_enabled_providers();
350
351 # Loop through the array of enabled providers.
352 foreach my $provider (@enabled_providers) {
353 # Hash to store the used-enabled and disabled sids.
354 my %enabled_disabled_sids;
355
356 # Generate modified sids file name for the current processed provider.
357 my $providers_modified_sids_file = &IDS::get_oinkmaster_provider_modified_sids_file($provider);
358
359 # Check if a modified sids file for this provider exists.
360 if (-f $providers_modified_sids_file) {
361 # Read-in the file for enabled/disabled sids.
362 %enabled_disabled_sids = &IDS::read_enabled_disabled_sids_file($providers_modified_sids_file);
363 }
364
365 # Loop through the hash of idsrules.
366 foreach my $rulefile (keys %idsrules) {
367 # Split the rulefile to get the vendor.
368 my @filename_parts = split(/-/, $rulefile);
369
370 # Assign rulefile vendor.
371 my $rulefile_vendor = @filename_parts[0];
372
373 # Skip the rulefile if the vendor is not our current processed provider.
374 next unless ($rulefile_vendor eq $provider);
375
376 # Loop through the single rules of the rulefile.
377 foreach my $sid (keys %{$idsrules{$rulefile}}) {
378 # Skip the current sid if it is not numeric.
379 next unless ($sid =~ /\d+/ );
380
381 # Check if there exists a key in the cgiparams hash for this sid.
382 if (exists($cgiparams{$sid})) {
383 # Look if the rule is disabled.
384 if ($idsrules{$rulefile}{$sid}{'State'} eq "off") {
385 # Check if the state has been set to 'on'.
386 if ($cgiparams{$sid} eq "on") {
387 # Add/Modify the sid to/in the enabled_disabled_sids hash.
388 $enabled_disabled_sids{$sid} = "enabled";
389
390 # Drop item from cgiparams hash.
391 delete $cgiparams{$rulefile}{$sid};
392 }
393 }
394 } else {
395 # Look if the rule is enabled.
396 if ($idsrules{$rulefile}{$sid}{'State'} eq "on") {
397 # Check if the state is 'on' and should be disabled.
398 # In this case there is no entry
399 # for the sid in the cgiparams hash.
400 # Add/Modify it to/in the enabled_disabled_sids hash.
401 $enabled_disabled_sids{$sid} = "disabled";
402
403 # Drop item from cgiparams hash.
404 delete $cgiparams{$rulefile}{$sid};
405 }
406 }
407 }
408 }
409
410 # Check if the hash for enabled/disabled sids contains any entries.
411 if (%enabled_disabled_sids) {
412 # Open providers modified sids file for writing.
413 open(PROVIDER_MOD_FILE, ">$providers_modified_sids_file") or die "Could not write to $providers_modified_sids_file. $!\n";
414
415 # Write header to the files.
416 print PROVIDER_MOD_FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
417
418 # Loop through the hash.
419 foreach my $sid (keys %enabled_disabled_sids) {
420 # Check if the sid is enabled.
421 if ($enabled_disabled_sids{$sid} eq "enabled") {
422 # Print the sid to the enabled_sids file.
423 print PROVIDER_MOD_FILE "enablesid $sid\n";
424 # Check if the sid is disabled.
425 } elsif ($enabled_disabled_sids{$sid} eq "disabled") {
426 # Print the sid to the disabled_sids file.
427 print PROVIDER_MOD_FILE "disablesid $sid\n";
428 # Something strange happende - skip the current sid.
429 } else {
430 next;
431 }
432 }
433
434 # Close file handle for the providers modified sids file.
435 close(PROVIDER_MOD_FILE);
436
437 # Add the file to the oinkmasters include file.
438 print OINKM_INCL_FILE "include $providers_modified_sids_file\n";
439 }
440 }
441
442 # Close the file handle after writing.
443 close(OINKM_INCL_FILE);
444
445 # Handle enabled / disabled rulefiles.
446 #
447
448 # Loop through the array of enabled providers.
449 foreach my $provider(@enabled_providers) {
450 # Array to store the rulefiles which belong to the current processed provider.
451 my @provider_rulefiles = ();
452
453 # Loop through the array of enabled rulefiles.
454 foreach my $rulesfile (@enabled_rulefiles) {
455 # Split the rulefile name.
456 my @filename_parts = split(/-/, "$rulesfile");
457
458 # Assign vendor name for easy processings.
459 my $vendor = @filename_parts[0];
460
461 # Check if the rulesvendor is our current processed enabled provider.
462 if ("$vendor" eq "$provider") {
463 # Add the rulesfile to the array of provider rulesfiles.
464 push(@provider_rulefiles, $rulesfile);
465 }
466
467 # Call function and write the providers used rulesfile file.
468 &IDS::write_used_provider_rulefiles_file($provider, @provider_rulefiles);
469 }
470 }
471
472 # Call function to generate and write the used rulefiles file.
473 &IDS::write_main_used_rulefiles_file(@enabled_providers);
474
475 # Lock the webpage and print message.
476 &working_notice("$Lang::tr{'ids apply ruleset changes'}");
477
478 # Call oinkmaster to alter the ruleset.
479 &IDS::oinkmaster();
480
481 # Check if the IDS is running.
482 if(&IDS::ids_is_running()) {
483 # Check if a restart of suricata is required.
484 if ($suricata_restart_required) {
485 # Call suricatactrl to perform the restart.
486 &IDS::call_suricatactrl("restart");
487 } else {
488 # Call suricatactrl to perform a reload.
489 &IDS::call_suricatactrl("reload");
490 }
491 }
492
493 # Reload page.
494 &reload();
495
496 # Download new ruleset.
497 } elsif ($cgiparams{'PROVIDERS'} eq $Lang::tr{'ids force ruleset update'}) {
498 # Assign given provider handle.
499 my $provider = $cgiparams{'PROVIDER'};
500
501 # Check if the red device is active.
502 unless (-e "${General::swroot}/red/active") {
503 $errormessage = "$Lang::tr{'could not download latest updates'} - $Lang::tr{'system is offline'}";
504 }
505
506 # Check if enought free disk space is availabe.
507 if(&IDS::checkdiskspace()) {
508 $errormessage = "$Lang::tr{'not enough disk space'}";
509 }
510
511 # Check if any errors happend.
512 unless ($errormessage) {
513 # Lock the webpage and print notice about downloading
514 # a new ruleset.
515 &working_notice("$Lang::tr{'ids download new ruleset'}");
516
517 # Call subfunction to download the ruleset.
518 if(&IDS::downloadruleset($provider)) {
519 $errormessage = "$provider - $Lang::tr{'could not download latest updates'}";
520
521 # Call function to store the errormessage.
522 &IDS::_store_error_message($errormessage);
523
524 # Preform a reload of the page.
525 &reload();
526 } else {
527 # Call subfunction to launch oinkmaster.
528 &IDS::oinkmaster();
529
530 # Check if the IDS is running.
531 if(&IDS::ids_is_running()) {
532 # Call suricatactrl to perform a reload.
533 &IDS::call_suricatactrl("reload");
534 }
535
536 # Perform a reload of the page.
537 &reload();
538 }
539 }
540
541 # Reset a provider to it's defaults.
542 } elsif ($cgiparams{'PROVIDERS'} eq "$Lang::tr{'ids reset provider'}") {
543 # Grab provider handle from cgihash.
544 my $provider = $cgiparams{'PROVIDER'};
545
546 # Lock the webpage and print message.
547 &working_notice("$Lang::tr{'ids apply ruleset changes'}");
548
549 # Create new empty file for used rulefiles
550 # for this provider.
551 &IDS::write_used_provider_rulefiles_file($provider);
552
553 # Call function to get the path and name for the given providers
554 # oinkmaster modified sids file.
555 my $provider_modified_sids_file = &IDS::get_oinkmaster_provider_modified_sids_file($provider);
556
557 # Check if the file exists.
558 if (-f $provider_modified_sids_file) {
559 # Remove the file, as requested.
560 unlink("$provider_modified_sids_file");
561 }
562
563 # Alter the oinkmaster provider includes file and remove the provider.
564 &IDS::alter_oinkmaster_provider_includes_file("remove", $provider);
565
566 # Regenerate ruleset.
567 &IDS::oinkmaster();
568
569 # Check if the IDS is running.
570 if(&IDS::ids_is_running()) {
571 # Get enabled providers.
572 my @enabled_providers = &IDS::get_enabled_providers();
573
574 # Get amount of enabled providers.
575 my $amount = @enabled_providers;
576
577 # Check if at least one enabled provider remains.
578 if ($amount >= 1) {
579 # Call suricatactrl to perform a reload.
580 &IDS::call_suricatactrl("restart");
581
582 # Stop suricata if no enabled provider remains.
583 } else {
584 # Call suricatactrel to perform the stop.
585 &IDS::call_suricatactrl("stop");
586 }
587 }
588
589 # Undefine providers flag.
590 undef($cgiparams{'PROVIDERS'});
591
592 # Reload page.
593 &reload();
594
595 # Save IDS settings.
596 } elsif ($cgiparams{'IDS'} eq $Lang::tr{'save'}) {
597 my %oldidssettings;
598 my $reload_page;
599 my $monitored_zones = 0;
600
601 # Read-in current (old) IDS settings.
602 &General::readhash("$IDS::ids_settings_file", \%oldidssettings);
603
604 # Get enabled providers.
605 my @enabled_providers = &IDS::get_enabled_providers();
606
607 # Prevent form name from been stored in conf file.
608 delete $cgiparams{'IDS'};
609
610 # Check if the IDS should be enabled.
611 if ($cgiparams{'ENABLE_IDS'} eq "on") {
612 # Check if at least one provider is enabled. Otherwise abort and display an error.
613 unless(@enabled_providers) {
614 $errormessage = $Lang::tr{'ids no enabled ruleset provider'};
615 }
616
617 # Loop through the array of available interfaces.
618 foreach my $zone (@network_zones) {
619 # Convert interface name into upper case.
620 my $zone_upper = uc($zone);
621
622 # Check if the IDS is enabled for this interaces.
623 if ($cgiparams{"ENABLE_IDS_$zone_upper"}) {
624 # Increase count.
625 $monitored_zones++;
626 }
627 }
628
629 # Check if at least one zone should be monitored, or show an error.
630 unless ($monitored_zones >= 1) {
631 $errormessage = $Lang::tr{'ids no network zone'};
632 }
633 }
634
635 # Go on if there are no error messages.
636 if (!$errormessage) {
637 # Store settings into settings file.
638 &General::writehash("$IDS::ids_settings_file", \%cgiparams);
639 }
640
641 # Check if the the automatic rule update hass been touched.
642 if($cgiparams{'AUTOUPDATE_INTERVAL'} ne $oldidssettings{'AUTOUPDATE_INTERVAL'}) {
643 # Call suricatactrl to set the new interval.
644 &IDS::call_suricatactrl("cron", $cgiparams{'AUTOUPDATE_INTERVAL'});
645 }
646
647 # Generate file to store the home net.
648 &IDS::generate_home_net_file();
649
650 # Generate file to the store the DNS servers.
651 &IDS::generate_dns_servers_file();
652
653 # Generate file to store the HTTP ports.
654 &IDS::generate_http_ports_file();
655
656 # Write the modify sid's file and pass the taken ruleaction.
657 &IDS::write_modify_sids_file();
658
659 # Check if "MONITOR_TRAFFIC_ONLY" has been changed.
660 if($cgiparams{'MONITOR_TRAFFIC_ONLY'} ne $oldidssettings{'MONITOR_TRAFFIC_ONLY'}) {
661 # Check if at least one provider is enabled.
662 if (@enabled_providers) {
663 # Lock the webpage and print message.
664 &working_notice("$Lang::tr{'ids working'}");
665
666 # Call oinkmaster to alter the ruleset.
667 &IDS::oinkmaster();
668
669 # Set reload_page to "True".
670 $reload_page="True";
671 }
672 }
673
674 # Check if the IDS currently is running.
675 if(&IDS::ids_is_running()) {
676 # Check if ENABLE_IDS is set to on.
677 if($cgiparams{'ENABLE_IDS'} eq "on") {
678 # Call suricatactrl to perform a reload of suricata.
679 &IDS::call_suricatactrl("reload");
680 } else {
681 # Call suricatactrl to stop suricata.
682 &IDS::call_suricatactrl("stop");
683 }
684 } else {
685 # Call suricatactrl to start suricata.
686 &IDS::call_suricatactrl("start");
687 }
688
689 # Check if the page should be reloaded.
690 if ($reload_page) {
691 # Perform a reload of the page.
692 &reload();
693 }
694
695 # Toggle Enable/Disable autoupdate for a provider
696 } elsif ($cgiparams{'AUTOUPDATE'} eq $Lang::tr{'toggle enable disable'}) {
697 my %used_providers = ();
698
699 # Only go further, if an ID has been passed.
700 if ($cgiparams{'ID'}) {
701 # Assign the given ID.
702 my $id = $cgiparams{'ID'};
703
704 # Undef the given ID.
705 undef($cgiparams{'ID'});
706
707 # Read-in providers settings file.
708 &General::readhasharray($IDS::providers_settings_file, \%used_providers);
709
710 # Grab the configured status of the corresponding entry.
711 my $status_autoupdate = $used_providers{$id}[2];
712
713 # Switch the status.
714 if ($status_autoupdate eq "disabled") {
715 $status_autoupdate = "enabled";
716 } else {
717 $status_autoupdate = "disabled";
718 }
719
720 # Modify the status of the existing entry.
721 $used_providers{$id} = ["$used_providers{$id}[0]", "$used_providers{$id}[1]", "$status_autoupdate", "$used_providers{$id}[3]"];
722
723 # Write the changed hash to the providers settings file.
724 &General::writehasharray($IDS::providers_settings_file, \%used_providers);
725 }
726
727 # Add/Edit a provider to the list of used providers.
728 #
729 } elsif (($cgiparams{'PROVIDERS'} eq "$Lang::tr{'add'}") || ($cgiparams{'PROVIDERS'} eq "$Lang::tr{'update'}")) {
730 my %used_providers = ();
731
732 # Read-in providers settings file.
733 &General::readhasharray("$IDS::providers_settings_file", \%used_providers);
734
735 # Assign some nice human-readable values.
736 my $provider = $cgiparams{'PROVIDER'};
737 my $subscription_code = $cgiparams{'SUBSCRIPTION_CODE'};
738 my $status_autoupdate;
739
740 # Handle autoupdate checkbox.
741 if ($cgiparams{'ENABLE_AUTOUPDATE'} eq "on") {
742 $status_autoupdate = "enabled";
743 } else {
744 $status_autoupdate = "disabled";
745 }
746
747 # Check if we are going to add a new provider.
748 if ($cgiparams{'PROVIDERS'} eq "$Lang::tr{'add'}") {
749 # Loop through the hash of used providers.
750 foreach my $id ( keys %used_providers) {
751 # Check if the choosen provider is already in use.
752 if ($used_providers{$id}[0] eq "$provider") {
753 # Assign error message.
754 $errormessage = "$Lang::tr{'ids the choosen provider is already in use'}";
755 }
756 }
757 }
758
759 # Check if the provider requires a subscription code.
760 if ($IDS::Ruleset::Providers{$provider}{'requires_subscription'} eq "True") {
761 # Check if an subscription code has been provided.
762 if ($subscription_code) {
763 # Check if the code contains unallowed chars.
764 unless ($subscription_code =~ /^[a-z0-9]+$/) {
765 $errormessage = $Lang::tr{'invalid input for subscription code'};
766 }
767 } else {
768 # Print an error message, that an subsription code is required for this
769 # provider.
770 $errormessage = $Lang::tr{'ids subscription code required'};
771 }
772 }
773
774 # Go further if there was no error.
775 if ($errormessage eq '') {
776 my $id;
777 my $status;
778
779 # Check if we should edit an existing entry and got an ID.
780 if (($cgiparams{'PROVIDERS'} eq $Lang::tr{'update'}) && ($cgiparams{'ID'})) {
781 # Assin the provided id.
782 $id = $cgiparams{'ID'};
783
784 # Undef the given ID.
785 undef($cgiparams{'ID'});
786
787 # Grab the configured status of the corresponding entry.
788 $status = $used_providers{$id}[3];
789 } else {
790 # Each newly added entry automatically should be enabled.
791 $status = "enabled";
792
793 # Generate the ID for the new entry.
794 #
795 # Sort the keys by their ID and store them in an array.
796 my @keys = sort { $a <=> $b } keys %used_providers;
797
798 # Reverse the key array.
799 my @reversed = reverse(@keys);
800
801 # Obtain the last used id.
802 my $last_id = @reversed[0];
803
804 # Increase the last id by one and use it as id for the new entry.
805 $id = ++$last_id;
806 }
807
808 # Add/Modify the entry to/in the used providers hash..
809 $used_providers{$id} = ["$provider", "$subscription_code", "$status_autoupdate", "$status"];
810
811 # Write the changed hash to the providers settings file.
812 &General::writehasharray($IDS::providers_settings_file, \%used_providers);
813
814 # Check if a new provider will be added.
815 if ($cgiparams{'PROVIDERS'} eq $Lang::tr{'add'}) {
816 # Check if the red device is active.
817 unless (-e "${General::swroot}/red/active") {
818 $errormessage = "$Lang::tr{'ids could not add provider'} - $Lang::tr{'system is offline'}";
819 }
820
821 # Check if enough free disk space is availabe.
822 if(&IDS::checkdiskspace()) {
823 $errormessage = "$Lang::tr{'ids could not add provider'} - $Lang::tr{'not enough disk space'}";
824 }
825
826 # Check if any errors happend.
827 unless ($errormessage) {
828 # Lock the webpage and print notice about downloading
829 # a new ruleset.
830 &working_notice("$Lang::tr{'ids working'}");
831
832 # Download the ruleset.
833 if(&IDS::downloadruleset($provider)) {
834 $errormessage = "$Lang::tr{'ids could not add provider'} - $Lang::tr{'ids unable to download the ruleset'}";
835
836 # Call function to store the errormessage.
837 &IDS::_store_error_message($errormessage);
838
839 # Remove the configured provider again.
840 &remove_provider($id);
841 } else {
842 # Extract the ruleset
843 &IDS::extractruleset($provider);
844
845 # Move the ruleset.
846 &IDS::move_tmp_ruleset();
847
848 # Cleanup temporary directory.
849 &IDS::cleanup_tmp_directory();
850
851 # Create new empty file for used rulefiles
852 # for this provider.
853 &IDS::write_used_provider_rulefiles_file($provider);
854 }
855
856 # Perform a reload of the page.
857 &reload();
858 }
859 }
860
861 }
862
863 # Undefine providers flag.
864 undef($cgiparams{'PROVIDERS'});
865
866 ## Toggle Enabled/Disabled for an existing provider.
867 #
868 } elsif ($cgiparams{'PROVIDERS'} eq $Lang::tr{'toggle enable disable'}) {
869 my %used_providers = ();
870 my $provider_includes_action;
871
872 # Value if oinkmaster has to be executed.
873 my $oinkmaster = "False";
874
875 # Only go further, if an ID has been passed.
876 if ($cgiparams{'ID'}) {
877 # Assign the given ID.
878 my $id = $cgiparams{'ID'};
879
880 # Undef the given ID.
881 undef($cgiparams{'ID'});
882
883 # Read-in file which contains the provider settings.
884 &General::readhasharray($IDS::providers_settings_file, \%used_providers);
885
886 # Grab the configured status of the corresponding entry.
887 my $status = $used_providers{$id}[3];
888
889 # Grab the provider handle.
890 my $provider_handle = $used_providers{$id}[0];
891
892 # Switch the status.
893 if ($status eq "enabled") {
894 $status = "disabled";
895
896 # Set the provider includes action to "remove" for removing the entry.
897 $provider_includes_action = "remove";
898 } else {
899 $status = "enabled";
900
901 # Set the provider includes action to "add".
902 $provider_includes_action = "add";
903
904 # This operation requires to launch oinkmaster.
905 $oinkmaster = "True";
906 }
907
908 # Modify the status of the existing entry.
909 $used_providers{$id} = ["$used_providers{$id}[0]", "$used_providers{$id}[1]", "$used_providers{$id}[2]", "$status"];
910
911 # Write the changed hash to the providers settings file.
912 &General::writehasharray($IDS::providers_settings_file, \%used_providers);
913
914 # Get all enabled providers.
915 my @enabled_providers = &IDS::get_enabled_providers();
916
917 # Write the main providers include file.
918 &IDS::write_main_used_rulefiles_file(@enabled_providers);
919
920 # Call function to alter the oinkmasters provider includes file and
921 # add or remove the provider.
922 &IDS::alter_oinkmaster_provider_includes_file($provider_includes_action, $provider_handle);
923
924 # Check if oinkmaster has to be executed.
925 if ($oinkmaster eq "True") {
926 # Lock the webpage and print message.
927 &working_notice("$Lang::tr{'ids apply ruleset changes'}");
928
929 # Launch oinkmaster.
930 &IDS::oinkmaster();
931 }
932
933 # Check if the IDS is running.
934 if(&IDS::ids_is_running()) {
935 # Gather the amount of enabled providers (elements in the array).
936 my $amount = @enabled_providers;
937
938 # Check if there are still enabled ruleset providers.
939 if ($amount >= 1) {
940 # Call suricatactrl to perform a restart.
941 &IDS::call_suricatactrl("restart");
942
943 # No active ruleset provider, suricata has to be stopped.
944 } else {
945 # Stop suricata.
946 &IDS::call_suricatactrl("stop");
947 }
948 }
949
950 # Undefine providers flag.
951 undef($cgiparams{'PROVIDERS'});
952
953 # Reload page.
954 &reload();
955 }
956
957 ## Remove provider from the list of used providers.
958 #
959 } elsif ($cgiparams{'PROVIDERS'} eq $Lang::tr{'remove'}) {
960 # Assign a nice human-readable variable.
961 my $id = $cgiparams{'ID'};
962
963 # Grab the provider name bevore deleting.
964 my $provider = &get_provider_handle($id);
965
966 # Remove the provider.
967 &remove_provider($id);
968
969 # Undef the given ID.
970 undef($cgiparams{'ID'});
971
972 # Lock the webpage and print message.
973 &working_notice("$Lang::tr{'ids apply ruleset changes'}");
974
975 # Drop the stored ruleset file.
976 &IDS::drop_dl_rulesfile($provider);
977
978 # Get the name of the provider rulessets include file.
979 my $provider_used_rulefile = &IDS::get_used_provider_rulesfile_file($provider);
980
981 # Drop the file, it is not longer needed.
982 unlink("$provider_used_rulefile");
983
984 # Call function to get the path and name for the given providers
985 # oinkmaster modified sids file.
986 my $provider_modified_sids_file = &IDS::get_oinkmaster_provider_modified_sids_file($provider);
987
988 # Check if the file exists.
989 if (-f $provider_modified_sids_file) {
990 # Remove the file, which is not longer needed.
991 unlink("$provider_modified_sids_file");
992 }
993
994 # Alter the oinkmaster provider includes file and remove the provider.
995 &IDS::alter_oinkmaster_provider_includes_file("remove", $provider);
996
997 # Regenerate ruleset.
998 &IDS::oinkmaster();
999
1000 # Gather all enabled providers.
1001 my @enabled_providers = &IDS::get_enabled_providers();
1002
1003 # Regenerate main providers include file.
1004 &IDS::write_main_used_rulefiles_file(@enabled_providers);
1005
1006 # Check if the IDS is running.
1007 if(&IDS::ids_is_running()) {
1008 # Get amount of enabled providers.
1009 my $amount = @enabled_providers;
1010
1011 # Check if at least one enabled provider remains.
1012 if ($amount >= 1) {
1013 # Call suricatactrl to perform a reload.
1014 &IDS::call_suricatactrl("restart");
1015
1016 # Stop suricata if no enabled provider remains.
1017 } else {
1018 # Call suricatactrel to perform the stop.
1019 &IDS::call_suricatactrl("stop");
1020 }
1021 }
1022
1023 # Undefine providers flag.
1024 undef($cgiparams{'PROVIDERS'});
1025
1026 # Reload page.
1027 &reload();
1028 }
1029
1030 &Header::openpage($Lang::tr{'intrusion detection system'}, 1, '');
1031
1032 &Header::openbigbox('100%', 'left', '', $errormessage);
1033
1034 &show_display_error_message();
1035
1036 if ($cgiparams{'RULESET'} eq "$Lang::tr{'ids customize ruleset'}" ) {
1037 &show_customize_ruleset();
1038 } elsif ($cgiparams{'PROVIDERS'} ne "") {
1039 &show_add_provider();
1040 } else {
1041 &show_mainpage();
1042 }
1043
1044 &Header::closebigbox();
1045 &Header::closepage();
1046
1047 #
1048 ## Tiny function to show if a error message happened.
1049 #
1050 sub show_display_error_message() {
1051 if ($errormessage) {
1052 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
1053 print "<class name='base'>$errormessage\n";
1054 print "&nbsp;</class>\n";
1055 &Header::closebox();
1056 }
1057 }
1058
1059 #
1060 ## Function to display the main IDS page.
1061 #
1062 sub show_mainpage() {
1063 # Read-in idssettings and provider settings.
1064 &General::readhash("$IDS::ids_settings_file", \%idssettings);
1065 &General::readhasharray("$IDS::providers_settings_file", \%used_providers);
1066
1067 # If no autoupdate intervall has been configured yet, set default value.
1068 unless(exists($idssettings{'AUTOUPDATE_INTERVAL'})) {
1069 # Set default to "weekly".
1070 $idssettings{'AUTOUPDATE_INTERVAL'} = 'weekly';
1071 }
1072
1073 # Read-in ignored hosts.
1074 &General::readhasharray("$IDS::settingsdir/ignored", \%ignored);
1075
1076 $checked{'ENABLE_IDS'}{'off'} = '';
1077 $checked{'ENABLE_IDS'}{'on'} = '';
1078 $checked{'ENABLE_IDS'}{$idssettings{'ENABLE_IDS'}} = "checked='checked'";
1079 $checked{'MONITOR_TRAFFIC_ONLY'}{'off'} = '';
1080 $checked{'MONITOR_TRAFFIC_ONLY'}{'on'} = '';
1081 $checked{'MONITOR_TRAFFIC_ONLY'}{$idssettings{'MONITOR_TRAFFIC_ONLY'}} = "checked='checked'";
1082 $selected{'AUTOUPDATE_INTERVAL'}{'off'} = '';
1083 $selected{'AUTOUPDATE_INTERVAL'}{'daily'} = '';
1084 $selected{'AUTOUPDATE_INTERVAL'}{'weekly'} = '';
1085 $selected{'AUTOUPDATE_INTERVAL'}{$idssettings{'AUTOUPDATE_INTERVAL'}} = "selected='selected'";
1086
1087 # Draw current state of the IDS
1088 &Header::openbox('100%', 'left', $Lang::tr{'intrusion detection system'});
1089
1090 # Check if the IDS is running and obtain the process-id.
1091 my $pid = &IDS::ids_is_running();
1092
1093 # Display some useful information, if suricata daemon is running.
1094 if ($pid) {
1095 # Gather used memory.
1096 my $memory = &get_memory_usage($pid);
1097
1098 print <<END;
1099 <table width='95%' cellspacing='0' class='tbl'>
1100 <tr>
1101 <th bgcolor='$color{'color20'}' colspan='3' align='left'><strong>$Lang::tr{'intrusion detection'}</strong></th>
1102 </tr>
1103
1104 <tr>
1105 <td class='base'>$Lang::tr{'guardian daemon'}</td>
1106 <td align='center' colspan='2' width='75%' bgcolor='${Header::colourgreen}'><font color='white'><strong>$Lang::tr{'running'}</strong></font></td>
1107 </tr>
1108
1109 <tr>
1110 <td class='base'></td>
1111 <td bgcolor='$color{'color20'}' align='center'><strong>PID</strong></td>
1112 <td bgcolor='$color{'color20'}' align='center'><strong>$Lang::tr{'memory'}</strong></td>
1113 </tr>
1114
1115 <tr>
1116 <td class='base'></td>
1117 <td bgcolor='$color{'color22'}' align='center'>$pid</td>
1118 <td bgcolor='$color{'color22'}' align='center'>$memory KB</td>
1119 </tr>
1120 </table>
1121 END
1122 } else {
1123 # Otherwise display a hint that the service is not launched.
1124 print <<END;
1125 <table width='95%' cellspacing='0' class='tbl'>
1126 <tr>
1127 <th bgcolor='$color{'color20'}' colspan='3' align='left'><strong>$Lang::tr{'intrusion detection'}</strong></th>
1128 </tr>
1129
1130 <tr>
1131 <td class='base'>$Lang::tr{'guardian daemon'}</td>
1132 <td align='center' width='75%' bgcolor='${Header::colourred}'><font color='white'><strong>$Lang::tr{'stopped'}</strong></font></td>
1133 </tr>
1134 </table>
1135 END
1136 }
1137
1138 # Only show this area, if at least one ruleset provider is configured.
1139 if (%used_providers) {
1140
1141 print <<END
1142
1143 <br><br><h2>$Lang::tr{'settings'}</h2>
1144
1145 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1146 <table width='100%' border='0'>
1147 <tr>
1148 <td class='base' colspan='2'>
1149 <input type='checkbox' name='ENABLE_IDS' $checked{'ENABLE_IDS'}{'on'}>&nbsp;$Lang::tr{'ids enable'}
1150 </td>
1151
1152 <td class='base' colspan='2'>
1153 <input type='checkbox' name='MONITOR_TRAFFIC_ONLY' $checked{'MONITOR_TRAFFIC_ONLY'}{'on'}>&nbsp;$Lang::tr{'ids monitor traffic only'}
1154 </td>
1155 </tr>
1156
1157 <tr>
1158 <td><br><br></td>
1159 <td><br><br></td>
1160 <td><br><br></td>
1161 <td><br><br></td>
1162 </tr>
1163
1164 <tr>
1165 <td colspan='4'><b>$Lang::tr{'ids monitored interfaces'}</b><br></td>
1166 </tr>
1167
1168 <tr>
1169 END
1170 ;
1171
1172 # Loop through the array of available networks and print config options.
1173 foreach my $zone (@network_zones) {
1174 my $checked_input;
1175 my $checked_forward;
1176
1177 # Convert current zone name to upper case.
1178 my $zone_upper = uc($zone);
1179
1180 # Set zone name.
1181 my $zone_name = $zone;
1182
1183 # Dirty hack to get the correct language string for the red zone.
1184 if ($zone eq "red") {
1185 $zone_name = "red1";
1186 }
1187
1188 # Grab checkbox status from settings hash.
1189 if ($idssettings{"ENABLE_IDS_$zone_upper"} eq "on") {
1190 $checked_input = "checked = 'checked'";
1191 }
1192
1193 print "<td class='base' width='20%'>\n";
1194 print "<input type='checkbox' name='ENABLE_IDS_$zone_upper' $checked_input>\n";
1195 print "&nbsp;$Lang::tr{'enabled on'}<font color='$colourhash{$zone}'> $Lang::tr{$zone_name}</font>\n";
1196 print "</td>\n";
1197 }
1198
1199 print <<END
1200 </tr>
1201
1202 <tr>
1203 <td><br><br></td>
1204 <td><br><br></td>
1205 <td><br><br></td>
1206 <td><br><br></td>
1207 </tr>
1208
1209 <tr>
1210 <td colspan='4'><b>$Lang::tr{'ids automatic rules update'}</b></td>
1211 </tr>
1212
1213 <tr>
1214 <td>
1215 <select name='AUTOUPDATE_INTERVAL'>
1216 <option value='off' $selected{'AUTOUPDATE_INTERVAL'}{'off'} >- $Lang::tr{'Disabled'} -</option>
1217 <option value='daily' $selected{'AUTOUPDATE_INTERVAL'}{'daily'} >$Lang::tr{'Daily'}</option>
1218 <option value='weekly' $selected{'AUTOUPDATE_INTERVAL'}{'weekly'} >$Lang::tr{'Weekly'}</option>
1219 </select>
1220 </td>
1221 </tr>
1222 </table>
1223
1224 <br><br>
1225
1226 <table width='100%'>
1227 <tr>
1228 <td align='right'><input type='submit' name='IDS' value='$Lang::tr{'save'}' /></td>
1229 </tr>
1230 </table>
1231 </form>
1232 END
1233 ;
1234
1235 }
1236
1237 &Header::closebox();
1238
1239 #
1240 # Used Ruleset Providers section.
1241 #
1242 &Header::openbox('100%', 'center', $Lang::tr{'ids ruleset settings'});
1243
1244 print <<END;
1245 <table width='100%' border='0'>
1246 <tr>
1247 <td class='base' bgcolor='$color{'color20'}'><b>$Lang::tr{'ids provider'}</b></td>
1248 <td class='base' bgcolor='$color{'color20'}'><b>$Lang::tr{'date'}</b></td>
1249 <td class='base' bgcolor='$color{'color20'}' align='center'><b>$Lang::tr{'ids autoupdates'}</b></td>
1250 <td class='base' bgcolor='$color{'color20'}'></td>
1251 <td class='base' colspan='3' bgcolor='$color{'color20'}'></td>
1252 </tr>
1253 END
1254 my $line = 1;
1255
1256 # Check if some providers has been configured.
1257 if (keys (%used_providers)) {
1258 my $col = "";
1259
1260 # Loop through all entries of the hash.
1261 foreach my $id (sort keys(%used_providers)) {
1262 # Assign data array positions to some nice variable names.
1263 my $provider = $used_providers{$id}[0];
1264 my $provider_name = &get_provider_name($provider);
1265 my $rulesetdate = &IDS::get_ruleset_date($provider);
1266
1267 my $subscription_code = $used_providers{$id}[1];
1268 my $autoupdate_status = $used_providers{$id}[2];
1269 my $status = $used_providers{$id}[3];
1270
1271 # Check if the item number is even or not.
1272 if ($line % 2) {
1273 $col="bgcolor='$color{'color22'}'";
1274 } else {
1275 $col="bgcolor='$color{'color20'}'";
1276 }
1277
1278 # Choose icons for the checkboxes.
1279 my $status_gif;
1280 my $status_gdesc;
1281 my $autoupdate_status_gif;
1282 my $autoupdate_status_gdesc;
1283
1284 # Check if the status is enabled and select the correct image and description.
1285 if ($status eq 'enabled' ) {
1286 $status_gif = 'on.gif';
1287 $status_gdesc = $Lang::tr{'click to disable'};
1288 } else {
1289 $status_gif = 'off.gif';
1290 $status_gdesc = $Lang::tr{'click to enable'};
1291 }
1292
1293 # Check if the autoupdate status is enabled and select the correct image and description.
1294 if ($autoupdate_status eq 'enabled') {
1295 $autoupdate_status_gif = 'on.gif';
1296 $autoupdate_status_gdesc = $Lang::tr{'click to disable'};
1297 } else {
1298 $autoupdate_status_gif = 'off.gif';
1299 $autoupdate_status_gdesc = $Lang::tr{'click to enable'};
1300 }
1301
1302 print <<END;
1303 <tr>
1304 <td width='33%' class='base' $col>$provider_name</td>
1305 <td width='30%' class='base' $col>$rulesetdate</td>
1306
1307 <td align='center' $col>
1308 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1309 <input type='hidden' name='AUTOUPDATE' value='$Lang::tr{'toggle enable disable'}' />
1310 <input type='image' name='$Lang::tr{'toggle enable disable'}' src='/images/$autoupdate_status_gif' alt='$autoupdate_status_gdesc' title='$autoupdate_status_gdesc' />
1311 <input type='hidden' name='ID' value='$id' />
1312 </form>
1313 </td>
1314
1315 <td align='center' $col>
1316 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1317 <input type='hidden' name='PROVIDERS' value='$Lang::tr{'toggle enable disable'}'>
1318 <input type='image' name='$Lang::tr{'toggle enable disable'}' src='/images/$status_gif' alt='$status_gdesc' title='$status_gdesc'>
1319 <input type='hidden' name='ID' value='$id'>
1320 </form>
1321 </td>
1322
1323 <td align='center' $col>
1324 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1325 <input type='hidden' name='PROVIDERS' value='$Lang::tr{'edit'}'>
1326 <input type='image' name='$Lang::tr{'edit'}' src='/images/edit.gif' alt='$Lang::tr{'edit'}' title='$Lang::tr{'edit'}'>
1327 <input type='hidden' name='ID' value='$id'>
1328 </form>
1329 </td>
1330
1331 <td align='center' $col>
1332 <form method='post' name='$provider' action='$ENV{'SCRIPT_NAME'}'>
1333 <input type='image' name='$Lang::tr{'remove'}' src='/images/delete.gif' title='$Lang::tr{'remove'}' alt='$Lang::tr{'remove'}'>
1334 <input type='hidden' name='ID' value='$id'>
1335 <input type='hidden' name='PROVIDERS' value='$Lang::tr{'remove'}'>
1336 </form>
1337 </td>
1338 </tr>
1339 END
1340 # Increment lines value.
1341 $line++;
1342
1343 }
1344
1345 } else {
1346 # Print notice that currently no hosts are ignored.
1347 print "<tr>\n";
1348 print "<td class='base' colspan='2'>$Lang::tr{'guardian no entries'}</td>\n";
1349 print "</tr>\n";
1350 }
1351
1352 print "</table>\n";
1353
1354 # Section to add new elements or edit existing ones.
1355 print <<END;
1356 <br>
1357 <hr>
1358 <br>
1359
1360 <div align='right'>
1361 <table width='100%'>
1362 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1363 <tr>
1364 END
1365
1366 # Only show this button if a ruleset provider is configured.
1367 if (%used_providers) {
1368 print "<input type='submit' name='RULESET' value='$Lang::tr{'ids customize ruleset'}'>\n";
1369 }
1370 print <<END;
1371 <input type='submit' name='PROVIDERS' value='$Lang::tr{'ids add provider'}'>
1372 </tr>
1373 </form>
1374 </table>
1375 </div>
1376 END
1377
1378 &Header::closebox();
1379
1380 #
1381 # Whitelist / Ignorelist
1382 #
1383 &Header::openbox('100%', 'center', $Lang::tr{'ids ignored hosts'});
1384
1385 print <<END;
1386 <table width='100%'>
1387 <tr>
1388 <td class='base' bgcolor='$color{'color20'}'><b>$Lang::tr{'ip address'}</b></td>
1389 <td class='base' bgcolor='$color{'color20'}'><b>$Lang::tr{'remark'}</b></td>
1390 <td class='base' colspan='3' bgcolor='$color{'color20'}'></td>
1391 </tr>
1392 END
1393 # Check if some hosts have been added to be ignored.
1394 if (keys (%ignored)) {
1395 my $col = "";
1396
1397 # Loop through all entries of the hash.
1398 while( (my $key) = each %ignored) {
1399 # Assign data array positions to some nice variable names.
1400 my $address = $ignored{$key}[0];
1401 my $remark = $ignored{$key}[1];
1402 my $status = $ignored{$key}[2];
1403
1404 # Check if the key (id) number is even or not.
1405 if ($cgiparams{'ID'} eq $key) {
1406 $col="bgcolor='${Header::colouryellow}'";
1407 } elsif ($key % 2) {
1408 $col="bgcolor='$color{'color22'}'";
1409 } else {
1410 $col="bgcolor='$color{'color20'}'";
1411 }
1412
1413 # Choose icon for the checkbox.
1414 my $gif;
1415 my $gdesc;
1416
1417 # Check if the status is enabled and select the correct image and description.
1418 if ($status eq 'enabled' ) {
1419 $gif = 'on.gif';
1420 $gdesc = $Lang::tr{'click to disable'};
1421 } else {
1422 $gif = 'off.gif';
1423 $gdesc = $Lang::tr{'click to enable'};
1424 }
1425
1426 print <<END;
1427 <tr>
1428 <td width='20%' class='base' $col>$address</td>
1429 <td width='65%' class='base' $col>$remark</td>
1430
1431 <td align='center' $col>
1432 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1433 <input type='hidden' name='WHITELIST' value='$Lang::tr{'toggle enable disable'}'>
1434 <input type='image' name='$Lang::tr{'toggle enable disable'}' src='/images/$gif' alt='$gdesc' title='$gdesc'>
1435 <input type='hidden' name='ID' value='$key'>
1436 </form>
1437 </td>
1438
1439 <td align='center' $col>
1440 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1441 <input type='hidden' name='WHITELIST' value='$Lang::tr{'edit'}'>
1442 <input type='image' name='$Lang::tr{'edit'}' src='/images/edit.gif' alt='$Lang::tr{'edit'}' title='$Lang::tr{'edit'}'>
1443 <input type='hidden' name='ID' value='$key'>
1444 </form>
1445 </td>
1446
1447 <td align='center' $col>
1448 <form method='post' name='$key' action='$ENV{'SCRIPT_NAME'}'>
1449 <input type='image' name='$Lang::tr{'remove'}' src='/images/delete.gif' title='$Lang::tr{'remove'}' alt='$Lang::tr{'remove'}'>
1450 <input type='hidden' name='ID' value='$key'>
1451 <input type='hidden' name='WHITELIST' value='$Lang::tr{'remove'}'>
1452 </form>
1453 </td>
1454 </tr>
1455 END
1456 }
1457 } else {
1458 # Print notice that currently no hosts are ignored.
1459 print "<tr>\n";
1460 print "<td class='base' colspan='2'>$Lang::tr{'guardian no entries'}</td>\n";
1461 print "</tr>\n";
1462 }
1463
1464 print "</table>\n";
1465
1466 # Section to add new elements or edit existing ones.
1467 print <<END;
1468 <br>
1469 <hr>
1470 <br>
1471
1472 <div align='center'>
1473 <table width='100%'>
1474 END
1475
1476 # Assign correct headline and button text.
1477 my $buttontext;
1478 my $entry_address;
1479 my $entry_remark;
1480
1481 # Check if an ID (key) has been given, in this case an existing entry should be edited.
1482 if ($cgiparams{'ID'} ne '') {
1483 $buttontext = $Lang::tr{'update'};
1484 print "<tr><td class='boldbase' colspan='3'><b>$Lang::tr{'update'}</b></td></tr>\n";
1485
1486 # Grab address and remark for the given key.
1487 $entry_address = $ignored{$cgiparams{'ID'}}[0];
1488 $entry_remark = $ignored{$cgiparams{'ID'}}[1];
1489 } else {
1490 $buttontext = $Lang::tr{'add'};
1491 print "<tr><td class='boldbase' colspan='3'><b>$Lang::tr{'dnsforward add a new entry'}</b></td></tr>\n";
1492 }
1493
1494 print <<END;
1495 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1496 <input type='hidden' name='ID' value='$cgiparams{'ID'}'>
1497 <tr>
1498 <td width='30%'>$Lang::tr{'ip address'}: </td>
1499 <td width='50%'><input type='text' name='IGNORE_ENTRY_ADDRESS' value='$entry_address' size='24' /></td>
1500
1501 <td width='30%'>$Lang::tr{'remark'}: </td>
1502 <td wicth='50%'><input type='text' name=IGNORE_ENTRY_REMARK value='$entry_remark' size='24' /></td>
1503 <td align='center' width='20%'><input type='submit' name='WHITELIST' value='$buttontext' /></td>
1504 </tr>
1505 </form>
1506 </table>
1507 </div>
1508 END
1509
1510 &Header::closebox();
1511 }
1512
1513 #
1514 ## Function to show the customize ruleset section.
1515 #
1516 sub show_customize_ruleset() {
1517 ### Java Script ###
1518 print"<script>\n";
1519
1520 # Java script variable declaration for show and hide.
1521 print"var show = \"$Lang::tr{'ids show'}\"\;\n";
1522 print"var hide = \"$Lang::tr{'ids hide'}\"\;\n";
1523
1524 print <<END
1525 // Tiny java script function to show/hide the rules
1526 // of a given category.
1527 function showhide(tblname) {
1528 \$("#" + tblname).toggle();
1529
1530 // Get current content of the span element.
1531 var content = document.getElementById("span_" + tblname);
1532
1533 if (content.innerHTML === show) {
1534 content.innerHTML = hide;
1535 } else {
1536 content.innerHTML = show;
1537 }
1538 }
1539 </script>
1540 END
1541 ;
1542 &Header::openbox('100%', 'LEFT', "$Lang::tr{'intrusion detection system rules'}" );
1543 print"<form method='POST' action='$ENV{'SCRIPT_NAME'}'>\n";
1544
1545 # Output display table for rule files
1546 print "<table width='100%'>\n";
1547
1548 # Loop over each rule file
1549 foreach my $rulefile (sort keys(%idsrules)) {
1550 my $rulechecked = '';
1551
1552 # Check if rule file is enabled
1553 if ($idsrules{$rulefile}{'Rulefile'}{'State'} eq 'on') {
1554 $rulechecked = 'CHECKED';
1555 }
1556
1557 # Convert rulefile name into category name.
1558 my $categoryname = &_rulefile_to_category($rulefile);
1559
1560 # Table and rows for the rule files.
1561 print"<tr>\n";
1562 print"<td class='base' width='5%'>\n";
1563 print"<input type='checkbox' name='$rulefile' $rulechecked>\n";
1564 print"</td>\n";
1565 print"<td class='base' width='90%'><b>$rulefile</b></td>\n";
1566 print"<td class='base' width='5%' align='right'>\n";
1567 print"<a href=\"javascript:showhide('$categoryname')\"><span id='span_$categoryname'>$Lang::tr{'ids show'}</span></a>\n";
1568 print"</td>\n";
1569 print"</tr>\n";
1570
1571 # Rows which will be hidden per default and will contain the single rules.
1572 print"<tr style='display:none' id='$categoryname'>\n";
1573 print"<td colspan='3'>\n";
1574
1575 # Local vars
1576 my $lines;
1577 my $rows;
1578 my $col;
1579
1580 # New table for the single rules.
1581 print "<table width='100%'>\n";
1582
1583 # Loop over rule file rules
1584 foreach my $sid (sort {$a <=> $b} keys(%{$idsrules{$rulefile}})) {
1585 # Local vars
1586 my $ruledefchecked = '';
1587
1588 # Skip rulefile itself.
1589 next if ($sid eq "Rulefile");
1590
1591 # If 2 rules have been displayed, start a new row
1592 if (($lines % 2) == 0) {
1593 print "</tr><tr>\n";
1594
1595 # Increase rows by once.
1596 $rows++;
1597 }
1598
1599 # Colour lines.
1600 if ($rows % 2) {
1601 $col="bgcolor='$color{'color20'}'";
1602 } else {
1603 $col="bgcolor='$color{'color22'}'";
1604 }
1605
1606 # Set rule state
1607 if ($idsrules{$rulefile}{$sid}{'State'} eq 'on') {
1608 $ruledefchecked = 'CHECKED';
1609 }
1610
1611 # Create rule checkbox and display rule description
1612 print "<td class='base' width='5%' align='right' $col>\n";
1613 print "<input type='checkbox' NAME='$sid' $ruledefchecked>\n";
1614 print "</td>\n";
1615 print "<td class='base' width='45%' $col>$idsrules{$rulefile}{$sid}{'Description'}</td>";
1616
1617 # Increment rule count
1618 $lines++;
1619 }
1620
1621 # If do not have a second rule for row, create empty cell
1622 if (($lines % 2) != 0) {
1623 print "<td class='base'></td>";
1624 }
1625
1626 # Close display table
1627 print "</tr></table></td></tr>";
1628 }
1629
1630 # Close display table
1631 print "</table>";
1632
1633 print <<END
1634 <table width='100%'>
1635 <tr>
1636 <td width='100%' align='right'>
1637 <input type='submit' value='$Lang::tr{'fwhost back'}'>
1638 <input type='submit' name='RULESET' value='$Lang::tr{'ids apply'}'>
1639 </td>
1640 </tr>
1641 </table>
1642 </form>
1643 END
1644 ;
1645 &Header::closebox();
1646 }
1647 }
1648
1649 #
1650 ## Function to show section for add/edit a provider.
1651 #
1652 sub show_add_provider() {
1653 my %used_providers = ();
1654 my @subscription_providers;
1655
1656 # Read -in providers settings file.
1657 &General::readhasharray("$IDS::providers_settings_file", \%used_providers);
1658
1659 # Get all supported ruleset providers.
1660 my @ruleset_providers = &IDS::get_ruleset_providers();
1661
1662 ### Java Script ###
1663 print "<script>\n";
1664
1665 # Generate Java Script Object which contains the URL of the providers.
1666 print "\t// Object, which contains the webpages of the ruleset providers.\n";
1667 print "\tvar url = {\n";
1668
1669 # Loop through the array of supported providers.
1670 foreach my $provider (@ruleset_providers) {
1671 # Check if the provider requires a subscription.
1672 if ($IDS::Ruleset::Providers{$provider}{'requires_subscription'} eq "True") {
1673 # Add the provider to the array of subscription_providers.
1674 push(@subscription_providers, $provider);
1675 }
1676
1677 # Grab the URL for the provider.
1678 my $url = $IDS::Ruleset::Providers{$provider}{'website'};
1679
1680 # Print the URL to the Java Script Object.
1681 print "\t\t$provider: \"$url\"\,\n";
1682 }
1683
1684 # Close the Java Script Object declaration.
1685 print "\t}\;\n\n";
1686
1687 # Generate Java Script Array which contains the provider that requires a subscription.
1688 my $line = "";
1689 $line = join("', '", @subscription_providers);
1690
1691 print "\t// Array which contains the providers that requires a subscription.\n";
1692 print "\tsubscription_provider = ['$line']\;\n\n";
1693
1694 print <<END
1695 // Java Script function to swap the text input field for
1696 // entering a subscription code.
1697 var update_provider = function() {
1698 if(inArray(\$('#PROVIDER').val(), subscription_provider)) {
1699 \$('.subscription_code').show();
1700 } else {
1701 \$('.subscription_code').hide();
1702 }
1703
1704 // Call function to change the website url.
1705 change_url(\$('#PROVIDER').val());
1706 };
1707
1708 // Java Script function to check if a given value is part of
1709 // an array.
1710 function inArray(value,array) {
1711 var count=array.length;
1712
1713 for(var i=0;i<count;i++) {
1714 if(array[i]===value){
1715 return true;
1716 }
1717 }
1718
1719 return false;
1720 }
1721
1722 // Tiny function to change the website url based on the selected element in the "PROVIDERS"
1723 // dropdown menu.
1724 function change_url(provider) {
1725 // Get and change the href to the corresponding url.
1726 document.getElementById("website").href = url[provider];
1727 }
1728
1729 // JQuery function to call corresponding function when
1730 // the ruleset provider is changed or the page is loaded for showing/hiding
1731 // the subscription_code area.
1732 \$(document).ready(function() {
1733 \$('#PROVIDER').change(update_provider);
1734 update_provider();
1735 });
1736
1737 </script>
1738 END
1739 ;
1740
1741 # Check if an existing provider should be edited.
1742 if($cgiparams{'PROVIDERS'} eq "$Lang::tr{'edit'}") {
1743 # Check if autoupdate is enabled for this provider.
1744 if ($used_providers{$cgiparams{'ID'}}[2] eq "enabled") {
1745 # Set the checkbox to be checked.
1746 $checked{'ENABLE_AUTOUPDATE'} = "checked='checked'";
1747 }
1748
1749 # Display section to force an rules update and to reset the provider.
1750 &show_additional_provider_actions();
1751
1752 } elsif ($cgiparams{'PROVIDERS'} eq "$Lang::tr{'ids add provider'}") {
1753 # Set the autoupdate to true as default.
1754 $checked{'ENABLE_AUTOUPDATE'} = "checked='checked'";
1755 }
1756
1757 &Header::openbox('100%', 'center', $Lang::tr{'ids provider settings'});
1758
1759 print <<END
1760 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1761 <table width='100%' border='0'>
1762 <tr>
1763 <td colspan='2'><b>$Lang::tr{'ids provider'}</b></td>
1764 </tr>
1765
1766 <tr>
1767 <td width='40%'>
1768 <input type='hidden' name='ID' value='$cgiparams{'ID'}'>
1769 END
1770 ;
1771 # Value to allow disabling the dropdown menu.
1772 my $disabled;
1773
1774 # Check if we are in edit mode.
1775 if ($cgiparams{'PROVIDERS'} eq "$Lang::tr{'edit'}") {
1776 $disabled = "disabled";
1777
1778 # Add hidden input with the provider because the disable select does not provider
1779 # this.
1780 print "<input type='hidden' name='PROVIDER' value='$used_providers{$cgiparams{'ID'}}[0]'>\n";
1781 }
1782
1783 print "<select name='PROVIDER' id='PROVIDER' $disabled>\n";
1784 # Temporary hash to store the provier names and their handles.
1785 my %tmphash = ();
1786
1787 # Loop through the array of ruleset providers.
1788 foreach my $handle (@ruleset_providers) {
1789 # Get the provider name.
1790 my $name = &get_provider_name($handle);
1791
1792 # Add the grabbed provider name and handle to the
1793 # temporary hash.
1794 $tmphash{$name} = "$handle";
1795 }
1796
1797 # Sort and loop through the temporary hash.
1798 foreach my $provider_name ( sort keys %tmphash ) {
1799 # Grab the provider handle.
1800 my $provider = $tmphash{$provider_name};
1801
1802 # Pre-select the provider if one is given.
1803 if (($used_providers{$cgiparams{'ID'}}[0] eq "$provider") || ($cgiparams{'PROVIDER'} eq "$provider")) {
1804 $selected{$provider} = "selected='selected'";
1805 }
1806
1807 # Add the provider to the dropdown menu.
1808 print "<option value='$provider' $selected{$provider}>$provider_name</option>\n";
1809 }
1810 print <<END
1811 </select>
1812 </td>
1813
1814 <td width='60%'>
1815 <b><a id="website" target="_blank" href="#">$Lang::tr{'ids visit provider website'}</a></b>
1816 </td>
1817 </tr>
1818
1819 <tr>
1820 <td colspan='2'><br><br></td>
1821 </tr>
1822
1823 <tr class='subscription_code' style='display:none' id='subscription_code'>
1824 <td colspan='2'>
1825 <table border='0'>
1826 <tr>
1827 <td>
1828 <b>$Lang::tr{'subscription code'}</b>
1829 </td>
1830 </tr>
1831
1832 <tr>
1833 <td>
1834 <input type='text' size='40' name='SUBSCRIPTION_CODE' value='$used_providers{$cgiparams{'ID'}}[1]'>
1835 </td>
1836 </tr>
1837
1838 <tr>
1839 <td><br><br></td>
1840 </tr>
1841 </table>
1842 </td>
1843 </tr>
1844
1845 <tr>
1846 <td colspan='2'>
1847 <input type='checkbox' name='ENABLE_AUTOUPDATE' $checked{'ENABLE_AUTOUPDATE'}>&nbsp;$Lang::tr{'ids enable automatic updates'}
1848 </td>
1849 </tr>
1850
1851 <tr>
1852 <td colspan='2' align='right'>
1853 <input type='submit' value='$Lang::tr{'back'}'>
1854 END
1855 ;
1856 # Check if a provider should be added or edited.
1857 if ($cgiparams{'PROVIDERS'} eq "$Lang::tr{'edit'}") {
1858 # Display button for updating the existing provider.
1859 print "<input type='submit' name='PROVIDERS' value='$Lang::tr{'update'}'>\n";
1860 } else {
1861 # Display button to add the new provider.
1862 print "<input type='submit' name='PROVIDERS' value='$Lang::tr{'add'}'>\n";
1863 }
1864 print <<END
1865 </td>
1866 </tr>
1867 </table>
1868 </form>
1869 END
1870 ;
1871 &Header::closebox();
1872 }
1873
1874 #
1875 ## Function to show the area where additional provider actions can be done.
1876 #
1877 sub show_additional_provider_actions() {
1878 my $disabled;
1879 my %used_providers = ();
1880
1881 # Read-in providers settings file.
1882 &General::readhasharray("$IDS::providers_settings_file", \%used_providers);
1883
1884 # Assign variable for provider handle.
1885 my $provider = "$used_providers{$cgiparams{'ID'}}[0]";
1886
1887 # Call function to get the path and name for the given providers
1888 # oinkmaster modified sids file.
1889 my $provider_modified_sids_file = &IDS::get_oinkmaster_provider_modified_sids_file($provider);
1890
1891 # Disable the reset provider button if no provider modified sids file exists.
1892 unless (-f $provider_modified_sids_file) {
1893 $disabled = "disabled";
1894 }
1895
1896 &Header::openbox('100%', 'center', "");
1897 print <<END
1898 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1899 <table width='100%' border="0">
1900 <tr>
1901 <td align='center'>
1902 <input type='hidden' name='PROVIDER' value='$provider'>
1903 <input type='submit' name='PROVIDERS' value='$Lang::tr{'ids reset provider'}' $disabled>
1904 <input type='submit' name='PROVIDERS' value='$Lang::tr{'ids force ruleset update'}'>
1905 </td>
1906 </tr>
1907 </table>
1908 </form>
1909 END
1910 ;
1911 &Header::closebox();
1912 }
1913
1914 #
1915 ## A function to display a notice, to lock the webpage and
1916 ## tell the user which action currently will be performed.
1917 #
1918 sub working_notice ($) {
1919 my ($message) = @_;
1920
1921 &Header::openpage($Lang::tr{'intrusion detection system'}, 1, '');
1922 &Header::openbigbox('100%', 'left', '', $errormessage);
1923 &Header::openbox( 'Waiting', 1,);
1924 print <<END;
1925 <table>
1926 <tr>
1927 <td><img src='/images/indicator.gif' alt='$Lang::tr{'aktiv'}' /></td>
1928 <td>$message</td>
1929 </tr>
1930 </table>
1931 END
1932 &Header::closebox();
1933 &Header::closebigbox();
1934 &Header::closepage();
1935 }
1936
1937 #
1938 ## A tiny function to perform a reload of the webpage after one second.
1939 #
1940 sub reload () {
1941 print "<meta http-equiv='refresh' content='1'>\n";
1942
1943 # Stop the script.
1944 exit;
1945 }
1946
1947 #
1948 ## Private function to read-in and parse rules of a given rulefile.
1949 #
1950 ## The given file will be read, parsed and all valid rules will be stored by ID,
1951 ## message/description and it's state in the idsrules hash.
1952 #
1953 sub readrulesfile ($) {
1954 my $rulefile = shift;
1955
1956 # Open rule file and read in contents
1957 open(RULEFILE, "$IDS::rulespath/$rulefile") or die "Unable to read $rulefile!";
1958
1959 # Store file content in an array.
1960 my @lines = <RULEFILE>;
1961
1962 # Close file.
1963 close(RULEFILE);
1964
1965 # Loop over rule file contents
1966 foreach my $line (@lines) {
1967 # Remove whitespaces.
1968 chomp $line;
1969
1970 # Skip blank lines.
1971 next if ($line =~ /^\s*$/);
1972
1973 # Local vars.
1974 my $sid;
1975 my $msg;
1976
1977 # Gather rule sid and message from the ruleline.
1978 if ($line =~ m/.*msg:\s*\"(.*?)\"\;.*sid:\s*(.*?); /) {
1979 $msg = $1;
1980 $sid = $2;
1981
1982 # Check if a rule has been found.
1983 if ($sid && $msg) {
1984 # Add rule to the idsrules hash.
1985 $idsrules{$rulefile}{$sid}{'Description'} = $msg;
1986
1987 # Grab status of the rule. Check if ruleline starts with a "dash".
1988 if ($line =~ /^\#/) {
1989 # If yes, the rule is disabled.
1990 $idsrules{$rulefile}{$sid}{'State'} = "off";
1991 } else {
1992 # Otherwise the rule is enabled.
1993 $idsrules{$rulefile}{$sid}{'State'} = "on";
1994 }
1995 }
1996 }
1997 }
1998 }
1999
2000 #
2001 ## Function to get the used memory of a given process-id.
2002 #
2003 sub get_memory_usage($) {
2004 my ($pid) = @_;
2005
2006 my $memory = 0;
2007
2008 # Try to open the status file for the given process-id on the pseudo
2009 # file system proc.
2010 if (open(FILE, "/proc/$pid/status")) {
2011 # Loop through the entire file.
2012 while (<FILE>) {
2013 # Splitt current line content and store them into variables.
2014 my ($key, $value) = split(":", $_, 2);
2015
2016 # Check if the current key is the one which contains the memory usage.
2017 # The wanted one is VmRSS which contains the Real-memory (resident set)
2018 # of the entire process.
2019 if ($key eq "VmRSS") {
2020 # Found the memory usage add it to the memory variable.
2021 $memory += $value;
2022
2023 # Break the loop.
2024 last;
2025 }
2026 }
2027
2028 # Close file handle.
2029 close(FILE);
2030
2031 # Return memory usage.
2032 return $memory;
2033 }
2034
2035 # If the file could not be open, return nothing.
2036 return;
2037 }
2038
2039 #
2040 ## Function to get the provider handle by a given ID.
2041 #
2042 sub get_provider_handle($) {
2043 my ($id) = @_;
2044
2045 my %used_providers = ();
2046
2047 # Read-in provider settings file.
2048 &General::readhasharray($IDS::providers_settings_file, \%used_providers);
2049
2050 # Obtain the provider handle for the given ID.
2051 my $provider_handle = $used_providers{$cgiparams{'ID'}}[0];
2052
2053 # Return the handle.
2054 return $provider_handle;
2055 }
2056
2057 #
2058 ## Function to get the provider name from the language file or providers file for a given handle.
2059 #
2060 sub get_provider_name($) {
2061 my ($handle) = @_;
2062 my $provider_name;
2063
2064 # Get the required translation string for the given provider handle.
2065 my $tr_string = $IDS::Ruleset::Providers{$handle}{'tr_string'};
2066
2067 # Check if the translation string is available in the language files.
2068 if ($Lang::tr{$tr_string}) {
2069 # Use the translated string from the language file.
2070 $provider_name = $Lang::tr{$tr_string};
2071 } else {
2072 # Fallback and use the provider summary from the providers file.
2073 $provider_name = $IDS::Ruleset::Providers{$handle}{'summary'};
2074 }
2075
2076 # Return the obtained provider name.
2077 return $provider_name;
2078 }
2079
2080 #
2081 ## Function to remove a provider by a given ID.
2082 #
2083 sub remove_provider($) {
2084 my ($id) = @_;
2085
2086 my %used_providers = ();
2087
2088 # Read-in provider settings file.
2089 &General::readhasharray($IDS::providers_settings_file, \%used_providers);
2090
2091 # Drop entry from the hash.
2092 delete($used_providers{$id});
2093
2094 # Write the changed hash to the provider settings file.
2095 &General::writehasharray($IDS::providers_settings_file, \%used_providers);
2096 }
2097
2098 #
2099 ## Private function to convert a given rulefile to a category name.
2100 ## ( No file extension anymore and if the name contained a dot, it
2101 ## would be replaced by a underline sign.)
2102 #
2103 sub _rulefile_to_category($) {
2104 my ($filename) = @_;
2105
2106 # Splitt the filename into single chunks and store them in a
2107 # temorary array.
2108 my @parts = split(/\./, $filename);
2109
2110 # Return / Remove last element of the temporary array.
2111 # This removes the file extension.
2112 pop @parts;
2113
2114 # Join together the single elements of the temporary array.
2115 # If these are more than one, use a "underline" for joining.
2116 my $category = join '_', @parts;
2117
2118 # Return the converted filename.
2119 return $category;
2120 }