]> git.ipfire.org Git - people/stevee/ipfire-2.x.git/blame - html/cgi-bin/ids.cgi
ids.cgi: Add section for additional provider actions.
[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
0c5b2f6d
SS
893 # Call function to get the path and name for the given providers
894 # oinkmaster modified sids file.
895 my $provider_modified_sids_file = &IDS::get_oinkmaster_provider_modified_sids_file($provider);
896
897 # Check if the file exists.
898 if (-f $provider_modified_sids_file) {
899 # Remove the file, which is not longer needed.
900 unlink("$provider_modified_sids_file");
901 }
902
903 # Alter the oinkmaster provider includes file and remove the provider.
904 &IDS::alter_oinkmaster_provider_includes_file("remove", $provider);
905
2fded6d2
SS
906 # Regenerate ruleset.
907 &IDS::oinkmaster();
908
909 # Gather all enabled providers.
910 my @enabled_providers = &IDS::get_enabled_providers();
911
912 # Regenerate main providers include file.
913 &IDS::write_main_used_rulefiles_file(@enabled_providers);
914
73eb03a3 915 # Check if the IDS is running.
2fded6d2
SS
916 if(&IDS::ids_is_running()) {
917 # Get amount of enabled providers.
918 my $amount = @enabled_providers;
919
920 # Check if at least one enabled provider remains.
921 if ($amount >= 1) {
922 # Call suricatactrl to perform a reload.
923 &IDS::call_suricatactrl("restart");
924
925 # Stop suricata if no enabled provider remains.
926 } else {
927 # Call suricatactrel to perform the stop.
928 &IDS::call_suricatactrl("stop");
929 }
930 }
73eb03a3
SS
931
932 # Undefine providers flag.
933 undef($cgiparams{'PROVIDERS'});
106f00bd
SS
934
935 # Reload page.
936 &reload();
ac1cfefa
MT
937}
938
ac1cfefa
MT
939&Header::openpage($Lang::tr{'intrusion detection system'}, 1, '');
940
2bbe6ede 941&Header::openbigbox('100%', 'left', '', $errormessage);
e0cec9fe 942
2bbe6ede 943&show_display_error_message();
0d34a479 944
2bbe6ede
SS
945if ($cgiparams{'RULESET'} eq "$Lang::tr{'ids customize ruleset'}" ) {
946 &show_customize_ruleset();
2f252efa
SS
947} elsif ($cgiparams{'PROVIDERS'} ne "") {
948 &show_add_provider();
2bbe6ede
SS
949} else {
950 &show_mainpage();
951}
029b8ed2 952
2bbe6ede
SS
953&Header::closebigbox();
954&Header::closepage();
e0cec9fe 955
2bbe6ede
SS
956#
957## Tiny function to show if a error message happened.
958#
959sub show_display_error_message() {
960 if ($errormessage) {
961 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
962 print "<class name='base'>$errormessage\n";
963 print "&nbsp;</class>\n";
964 &Header::closebox();
965 }
966}
e0cec9fe 967
2bbe6ede
SS
968#
969## Function to display the main IDS page.
970#
971sub show_mainpage() {
aba3cbe5 972 # Read-in idssettings and provider settings.
2bbe6ede 973 &General::readhash("$IDS::ids_settings_file", \%idssettings);
aba3cbe5 974 &General::readhasharray("$IDS::providers_settings_file", \%used_providers);
2bbe6ede
SS
975
976 # If no autoupdate intervall has been configured yet, set default value.
77351a6b 977 unless(exists($idssettings{'AUTOUPDATE_INTERVAL'})) {
2bbe6ede 978 # Set default to "weekly".
77351a6b 979 $idssettings{'AUTOUPDATE_INTERVAL'} = 'weekly';
17726644 980 }
2bbe6ede
SS
981
982 # Read-in ignored hosts.
983 &General::readhasharray("$IDS::settingsdir/ignored", \%ignored);
984
985 $checked{'ENABLE_IDS'}{'off'} = '';
986 $checked{'ENABLE_IDS'}{'on'} = '';
987 $checked{'ENABLE_IDS'}{$idssettings{'ENABLE_IDS'}} = "checked='checked'";
988 $checked{'MONITOR_TRAFFIC_ONLY'}{'off'} = '';
989 $checked{'MONITOR_TRAFFIC_ONLY'}{'on'} = '';
990 $checked{'MONITOR_TRAFFIC_ONLY'}{$idssettings{'MONITOR_TRAFFIC_ONLY'}} = "checked='checked'";
2bbe6ede
SS
991 $selected{'AUTOUPDATE_INTERVAL'}{'off'} = '';
992 $selected{'AUTOUPDATE_INTERVAL'}{'daily'} = '';
993 $selected{'AUTOUPDATE_INTERVAL'}{'weekly'} = '';
2f252efa 994 $selected{'AUTOUPDATE_INTERVAL'}{$idssettings{'AUTOUPDATE_INTERVAL'}} = "selected='selected'";
17726644 995
2bbe6ede
SS
996 # Draw current state of the IDS
997 &Header::openbox('100%', 'left', $Lang::tr{'intrusion detection system'});
1504a375 998
2bbe6ede
SS
999 # Check if the IDS is running and obtain the process-id.
1000 my $pid = &IDS::ids_is_running();
87660964 1001
2bbe6ede
SS
1002 # Display some useful information, if suricata daemon is running.
1003 if ($pid) {
1004 # Gather used memory.
1005 my $memory = &get_memory_usage($pid);
87660964 1006
2bbe6ede
SS
1007 print <<END;
1008 <table width='95%' cellspacing='0' class='tbl'>
1009 <tr>
1010 <th bgcolor='$color{'color20'}' colspan='3' align='left'><strong>$Lang::tr{'intrusion detection'}</strong></th>
1011 </tr>
87660964 1012
2bbe6ede
SS
1013 <tr>
1014 <td class='base'>$Lang::tr{'guardian daemon'}</td>
1015 <td align='center' colspan='2' width='75%' bgcolor='${Header::colourgreen}'><font color='white'><strong>$Lang::tr{'running'}</strong></font></td>
1016 </tr>
87660964 1017
2bbe6ede
SS
1018 <tr>
1019 <td class='base'></td>
1020 <td bgcolor='$color{'color20'}' align='center'><strong>PID</strong></td>
1021 <td bgcolor='$color{'color20'}' align='center'><strong>$Lang::tr{'memory'}</strong></td>
1022 </tr>
87660964 1023
2bbe6ede
SS
1024 <tr>
1025 <td class='base'></td>
1026 <td bgcolor='$color{'color22'}' align='center'>$pid</td>
1027 <td bgcolor='$color{'color22'}' align='center'>$memory KB</td>
1028 </tr>
1029 </table>
87660964 1030END
2bbe6ede
SS
1031 } else {
1032 # Otherwise display a hint that the service is not launched.
1033 print <<END;
1034 <table width='95%' cellspacing='0' class='tbl'>
1035 <tr>
1036 <th bgcolor='$color{'color20'}' colspan='3' align='left'><strong>$Lang::tr{'intrusion detection'}</strong></th>
1037 </tr>
87660964 1038
2bbe6ede
SS
1039 <tr>
1040 <td class='base'>$Lang::tr{'guardian daemon'}</td>
1041 <td align='center' width='75%' bgcolor='${Header::colourred}'><font color='white'><strong>$Lang::tr{'stopped'}</strong></font></td>
1042 </tr>
1043 </table>
87660964 1044END
2bbe6ede 1045 }
87660964 1046
2f252efa
SS
1047 # Only show this area, if at least one ruleset provider is configured.
1048 if (%used_providers) {
674912fc 1049
2bbe6ede 1050print <<END
674912fc 1051
2bbe6ede 1052 <br><br><h2>$Lang::tr{'settings'}</h2>
1286e0d4 1053
2bbe6ede
SS
1054 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1055 <table width='100%' border='0'>
1056 <tr>
1057 <td class='base' colspan='2'>
1058 <input type='checkbox' name='ENABLE_IDS' $checked{'ENABLE_IDS'}{'on'}>&nbsp;$Lang::tr{'ids enable'}
1059 </td>
cf02bf2f 1060
2bbe6ede
SS
1061 <td class='base' colspan='2'>
1062 <input type='checkbox' name='MONITOR_TRAFFIC_ONLY' $checked{'MONITOR_TRAFFIC_ONLY'}{'on'}>&nbsp;$Lang::tr{'ids monitor traffic only'}
1063 </td>
1064 </tr>
1504a375 1065
2bbe6ede
SS
1066 <tr>
1067 <td><br><br></td>
1068 <td><br><br></td>
1069 <td><br><br></td>
1070 <td><br><br></td>
1071 </tr>
a4ccfcbb 1072
2bbe6ede
SS
1073 <tr>
1074 <td colspan='4'><b>$Lang::tr{'ids monitored interfaces'}</b><br></td>
1075 </tr>
a4ccfcbb 1076
2bbe6ede 1077 <tr>
ac1cfefa
MT
1078END
1079;
1504a375 1080
2bbe6ede
SS
1081 # Loop through the array of available networks and print config options.
1082 foreach my $zone (@network_zones) {
1083 my $checked_input;
1084 my $checked_forward;
1504a375 1085
2bbe6ede
SS
1086 # Convert current zone name to upper case.
1087 my $zone_upper = uc($zone);
1504a375 1088
2bbe6ede
SS
1089 # Set zone name.
1090 my $zone_name = $zone;
53817b89 1091
2bbe6ede
SS
1092 # Dirty hack to get the correct language string for the red zone.
1093 if ($zone eq "red") {
1094 $zone_name = "red1";
1095 }
53817b89 1096
2bbe6ede
SS
1097 # Grab checkbox status from settings hash.
1098 if ($idssettings{"ENABLE_IDS_$zone_upper"} eq "on") {
1099 $checked_input = "checked = 'checked'";
1100 }
1504a375 1101
2bbe6ede
SS
1102 print "<td class='base' width='20%'>\n";
1103 print "<input type='checkbox' name='ENABLE_IDS_$zone_upper' $checked_input>\n";
1104 print "&nbsp;$Lang::tr{'enabled on'}<font color='$colourhash{$zone}'> $Lang::tr{$zone_name}</font>\n";
1105 print "</td>\n";
1106 }
1b73b07e 1107
ac1cfefa 1108print <<END
2bbe6ede 1109 </tr>
77351a6b
SS
1110
1111 <tr>
1112 <td><br><br></td>
1113 <td><br><br></td>
1114 <td><br><br></td>
1115 <td><br><br></td>
1116 </tr>
1117
1118 <tr>
1119 <td colspan='4'><b>$Lang::tr{'ids automatic rules update'}</b></td>
1120 </tr>
1121
1122 <tr>
1123 <td>
1124 <select name='AUTOUPDATE_INTERVAL'>
1125 <option value='off' $selected{'AUTOUPDATE_INTERVAL'}{'off'} >- $Lang::tr{'Disabled'} -</option>
1126 <option value='daily' $selected{'AUTOUPDATE_INTERVAL'}{'daily'} >$Lang::tr{'Daily'}</option>
1127 <option value='weekly' $selected{'AUTOUPDATE_INTERVAL'}{'weekly'} >$Lang::tr{'Weekly'}</option>
1128 </select>
1129 </td>
1130 </tr>
2bbe6ede 1131 </table>
1504a375 1132
2bbe6ede 1133 <br><br>
ea5c8eeb 1134
2bbe6ede
SS
1135 <table width='100%'>
1136 <tr>
1137 <td align='right'><input type='submit' name='IDS' value='$Lang::tr{'save'}' /></td>
1138 </tr>
1139 </table>
1140 </form>
ea5c8eeb
SS
1141END
1142;
1143
2bbe6ede 1144 }
cf02bf2f 1145
2bbe6ede 1146 &Header::closebox();
ea5c8eeb 1147
2f252efa
SS
1148 #
1149 # Used Ruleset Providers section.
1150 #
2bbe6ede 1151 &Header::openbox('100%', 'center', $Lang::tr{'ids ruleset settings'});
ea5c8eeb 1152
2f252efa
SS
1153print <<END;
1154 <table width='100%' border='0'>
1155 <tr>
1156 <td class='base' bgcolor='$color{'color20'}'><b>$Lang::tr{'ids provider'}</b></td>
1157 <td class='base' bgcolor='$color{'color20'}'><b>$Lang::tr{'date'}</b></td>
1158 <td class='base' bgcolor='$color{'color20'}' align='center'><b>$Lang::tr{'ids autoupdates'}</b></td>
1159 <td class='base' bgcolor='$color{'color20'}'></td>
1160 <td class='base' colspan='3' bgcolor='$color{'color20'}'></td>
1161 </tr>
3e12c6e6 1162END
7e1a09f9
SS
1163 my $line = 1;
1164
2f252efa
SS
1165 # Check if some providers has been configured.
1166 if (keys (%used_providers)) {
1167 my $col = "";
3e12c6e6 1168
2f252efa 1169 # Loop through all entries of the hash.
2f252efa
SS
1170 foreach my $id (sort keys(%used_providers)) {
1171 # Assign data array positions to some nice variable names.
1172 my $provider = $used_providers{$id}[0];
1173 my $provider_name = &get_provider_name($provider);
593abb35 1174 my $rulesetdate = &IDS::get_ruleset_date($provider);
2f252efa
SS
1175
1176 my $subscription_code = $used_providers{$id}[1];
1177 my $autoupdate_status = $used_providers{$id}[2];
1178 my $status = $used_providers{$id}[3];
1179
1180 # Check if the item number is even or not.
7e1a09f9 1181 if ($line % 2) {
2f252efa
SS
1182 $col="bgcolor='$color{'color22'}'";
1183 } else {
1184 $col="bgcolor='$color{'color20'}'";
2bbe6ede 1185 }
1504a375 1186
2f252efa
SS
1187 # Choose icons for the checkboxes.
1188 my $status_gif;
1189 my $status_gdesc;
1190 my $autoupdate_status_gif;
1191 my $autoupdate_status_gdesc;
1504a375 1192
2f252efa
SS
1193 # Check if the status is enabled and select the correct image and description.
1194 if ($status eq 'enabled' ) {
1195 $status_gif = 'on.gif';
1196 $status_gdesc = $Lang::tr{'click to disable'};
1197 } else {
1198 $status_gif = 'off.gif';
1199 $status_gdesc = $Lang::tr{'click to enable'};
1200 }
1504a375 1201
2f252efa
SS
1202 # Check if the autoupdate status is enabled and select the correct image and description.
1203 if ($autoupdate_status eq 'enabled') {
1204 $autoupdate_status_gif = 'on.gif';
1205 $autoupdate_status_gdesc = $Lang::tr{'click to disable'};
1206 } else {
1207 $autoupdate_status_gif = 'off.gif';
1208 $autoupdate_status_gdesc = $Lang::tr{'click to enable'};
1209 }
2bbe6ede 1210
2f252efa
SS
1211print <<END;
1212 <tr>
1213 <td width='33%' class='base' $col>$provider_name</td>
593abb35 1214 <td width='30%' class='base' $col>$rulesetdate</td>
2f252efa
SS
1215
1216 <td align='center' $col>
1217 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1218 <input type='hidden' name='AUTOUPDATE' value='$Lang::tr{'toggle enable disable'}' />
1219 <input type='image' name='$Lang::tr{'toggle enable disable'}' src='/images/$autoupdate_status_gif' alt='$autoupdate_status_gdesc' title='$autoupdate_status_gdesc' />
1220 <input type='hidden' name='ID' value='$id' />
1221 </form>
1222 </td>
1223
1224 <td align='center' $col>
7323c72d 1225 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
2f252efa
SS
1226 <input type='hidden' name='PROVIDERS' value='$Lang::tr{'toggle enable disable'}'>
1227 <input type='image' name='$Lang::tr{'toggle enable disable'}' src='/images/$status_gif' alt='$status_gdesc' title='$status_gdesc'>
1228 <input type='hidden' name='ID' value='$id'>
1229 </form>
1230 </td>
1231
1232 <td align='center' $col>
1233 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1234 <input type='hidden' name='PROVIDERS' value='$Lang::tr{'edit'}'>
1235 <input type='image' name='$Lang::tr{'edit'}' src='/images/edit.gif' alt='$Lang::tr{'edit'}' title='$Lang::tr{'edit'}'>
1236 <input type='hidden' name='ID' value='$id'>
1237 </form>
1238 </td>
1504a375 1239
2f252efa
SS
1240 <td align='center' $col>
1241 <form method='post' name='$provider' action='$ENV{'SCRIPT_NAME'}'>
1242 <input type='image' name='$Lang::tr{'remove'}' src='/images/delete.gif' title='$Lang::tr{'remove'}' alt='$Lang::tr{'remove'}'>
1243 <input type='hidden' name='ID' value='$id'>
1244 <input type='hidden' name='PROVIDERS' value='$Lang::tr{'remove'}'>
1245 </form>
1246 </td>
1247 </tr>
ea5c8eeb 1248END
7e1a09f9
SS
1249 # Increment lines value.
1250 $line++;
1251
2bbe6ede 1252 }
2f252efa
SS
1253
1254 } else {
1255 # Print notice that currently no hosts are ignored.
1256 print "<tr>\n";
1257 print "<td class='base' colspan='2'>$Lang::tr{'guardian no entries'}</td>\n";
1258 print "</tr>\n";
1259 }
1260
1261 print "</table>\n";
1262
1263 # Section to add new elements or edit existing ones.
ea5c8eeb 1264print <<END;
2f252efa
SS
1265 <br>
1266 <hr>
1267 <br>
1504a375 1268
2f252efa
SS
1269 <div align='right'>
1270 <table width='100%'>
1271 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1272 <tr>
1273END
1274
1275 # Only show this button if a ruleset provider is configured.
1276 if (%used_providers) {
1277 print "<input type='submit' name='RULESET' value='$Lang::tr{'ids customize ruleset'}'>\n";
1278 }
1279print <<END;
1280 <input type='submit' name='PROVIDERS' value='$Lang::tr{'ids add provider'}'>
1281 </tr>
1282 </form>
2bbe6ede 1283 </table>
2f252efa 1284 </div>
ac1cfefa 1285END
ac1cfefa 1286
2bbe6ede 1287 &Header::closebox();
fbfdb241 1288
2bbe6ede
SS
1289 #
1290 # Whitelist / Ignorelist
1291 #
1292 &Header::openbox('100%', 'center', $Lang::tr{'ids ignored hosts'});
b7e29743 1293
2bbe6ede 1294 print <<END;
b7e29743
SS
1295 <table width='100%'>
1296 <tr>
1297 <td class='base' bgcolor='$color{'color20'}'><b>$Lang::tr{'ip address'}</b></td>
1298 <td class='base' bgcolor='$color{'color20'}'><b>$Lang::tr{'remark'}</b></td>
1299 <td class='base' colspan='3' bgcolor='$color{'color20'}'></td>
1300 </tr>
1301END
1302 # Check if some hosts have been added to be ignored.
1303 if (keys (%ignored)) {
1304 my $col = "";
1305
1306 # Loop through all entries of the hash.
1307 while( (my $key) = each %ignored) {
1308 # Assign data array positions to some nice variable names.
1309 my $address = $ignored{$key}[0];
1310 my $remark = $ignored{$key}[1];
1311 my $status = $ignored{$key}[2];
1312
1313 # Check if the key (id) number is even or not.
1314 if ($cgiparams{'ID'} eq $key) {
1315 $col="bgcolor='${Header::colouryellow}'";
1316 } elsif ($key % 2) {
1317 $col="bgcolor='$color{'color22'}'";
1318 } else {
1319 $col="bgcolor='$color{'color20'}'";
1320 }
1321
1322 # Choose icon for the checkbox.
1323 my $gif;
1324 my $gdesc;
1325
1326 # Check if the status is enabled and select the correct image and description.
1327 if ($status eq 'enabled' ) {
1328 $gif = 'on.gif';
1329 $gdesc = $Lang::tr{'click to disable'};
1330 } else {
1331 $gif = 'off.gif';
1332 $gdesc = $Lang::tr{'click to enable'};
1333 }
1334
1335print <<END;
1336 <tr>
1337 <td width='20%' class='base' $col>$address</td>
1338 <td width='65%' class='base' $col>$remark</td>
1339
1340 <td align='center' $col>
1341 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
2f252efa
SS
1342 <input type='hidden' name='WHITELIST' value='$Lang::tr{'toggle enable disable'}'>
1343 <input type='image' name='$Lang::tr{'toggle enable disable'}' src='/images/$gif' alt='$gdesc' title='$gdesc'>
1344 <input type='hidden' name='ID' value='$key'>
b7e29743
SS
1345 </form>
1346 </td>
1347
1348 <td align='center' $col>
1349 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
2f252efa
SS
1350 <input type='hidden' name='WHITELIST' value='$Lang::tr{'edit'}'>
1351 <input type='image' name='$Lang::tr{'edit'}' src='/images/edit.gif' alt='$Lang::tr{'edit'}' title='$Lang::tr{'edit'}'>
1352 <input type='hidden' name='ID' value='$key'>
b7e29743
SS
1353 </form>
1354 </td>
1355
1356 <td align='center' $col>
1357 <form method='post' name='$key' action='$ENV{'SCRIPT_NAME'}'>
1358 <input type='image' name='$Lang::tr{'remove'}' src='/images/delete.gif' title='$Lang::tr{'remove'}' alt='$Lang::tr{'remove'}'>
1359 <input type='hidden' name='ID' value='$key'>
1360 <input type='hidden' name='WHITELIST' value='$Lang::tr{'remove'}'>
1361 </form>
2bbe6ede
SS
1362 </td>
1363 </tr>
b7e29743 1364END
2bbe6ede
SS
1365 }
1366 } else {
1367 # Print notice that currently no hosts are ignored.
1368 print "<tr>\n";
1369 print "<td class='base' colspan='2'>$Lang::tr{'guardian no entries'}</td>\n";
1370 print "</tr>\n";
b7e29743 1371 }
b7e29743 1372
2bbe6ede 1373 print "</table>\n";
b7e29743 1374
2bbe6ede 1375 # Section to add new elements or edit existing ones.
b7e29743 1376print <<END;
2bbe6ede
SS
1377 <br>
1378 <hr>
1379 <br>
1380
1381 <div align='center'>
1382 <table width='100%'>
b7e29743
SS
1383END
1384
2bbe6ede
SS
1385 # Assign correct headline and button text.
1386 my $buttontext;
1387 my $entry_address;
1388 my $entry_remark;
b7e29743 1389
2bbe6ede
SS
1390 # Check if an ID (key) has been given, in this case an existing entry should be edited.
1391 if ($cgiparams{'ID'} ne '') {
1392 $buttontext = $Lang::tr{'update'};
1393 print "<tr><td class='boldbase' colspan='3'><b>$Lang::tr{'update'}</b></td></tr>\n";
b7e29743 1394
2bbe6ede
SS
1395 # Grab address and remark for the given key.
1396 $entry_address = $ignored{$cgiparams{'ID'}}[0];
1397 $entry_remark = $ignored{$cgiparams{'ID'}}[1];
1398 } else {
1399 $buttontext = $Lang::tr{'add'};
1400 print "<tr><td class='boldbase' colspan='3'><b>$Lang::tr{'dnsforward add a new entry'}</b></td></tr>\n";
1401 }
b7e29743
SS
1402
1403print <<END;
2bbe6ede
SS
1404 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1405 <input type='hidden' name='ID' value='$cgiparams{'ID'}'>
1406 <tr>
1407 <td width='30%'>$Lang::tr{'ip address'}: </td>
1408 <td width='50%'><input type='text' name='IGNORE_ENTRY_ADDRESS' value='$entry_address' size='24' /></td>
b7e29743 1409
2bbe6ede
SS
1410 <td width='30%'>$Lang::tr{'remark'}: </td>
1411 <td wicth='50%'><input type='text' name=IGNORE_ENTRY_REMARK value='$entry_remark' size='24' /></td>
1412 <td align='center' width='20%'><input type='submit' name='WHITELIST' value='$buttontext' /></td>
1413 </tr>
1414 </form>
1415 </table>
1416 </div>
b7e29743
SS
1417END
1418
2bbe6ede 1419 &Header::closebox();
fed57fe7
SS
1420}
1421
fed57fe7
SS
1422#
1423## Function to show the customize ruleset section.
1424#
1425sub show_customize_ruleset() {
2bbe6ede
SS
1426 ### Java Script ###
1427 print"<script>\n";
1428
1429 # Java script variable declaration for show and hide.
1430 print"var show = \"$Lang::tr{'ids show'}\"\;\n";
1431 print"var hide = \"$Lang::tr{'ids hide'}\"\;\n";
1432
1433print <<END
1434 // Tiny java script function to show/hide the rules
1435 // of a given category.
1436 function showhide(tblname) {
1437 \$("#" + tblname).toggle();
1438
1439 // Get current content of the span element.
1440 var content = document.getElementById("span_" + tblname);
1441
1442 if (content.innerHTML === show) {
1443 content.innerHTML = hide;
1444 } else {
1445 content.innerHTML = show;
1446 }
1447 }
1448 </script>
1449END
1450;
87df37da 1451 &Header::openbox('100%', 'LEFT', "$Lang::tr{'intrusion detection system rules'}" );
80bcd4dd 1452 print"<form method='POST' action='$ENV{'SCRIPT_NAME'}'>\n";
ce0e83b3 1453
80bcd4dd
SS
1454 # Output display table for rule files
1455 print "<table width='100%'>\n";
f7fcd1c0 1456
80bcd4dd
SS
1457 # Loop over each rule file
1458 foreach my $rulefile (sort keys(%idsrules)) {
1459 my $rulechecked = '';
3ffee04b 1460
80bcd4dd
SS
1461 # Check if rule file is enabled
1462 if ($idsrules{$rulefile}{'Rulefile'}{'State'} eq 'on') {
1463 $rulechecked = 'CHECKED';
1464 }
1465
0a1bba1a
SS
1466 # Convert rulefile name into category name.
1467 my $categoryname = &_rulefile_to_category($rulefile);
1468
80bcd4dd
SS
1469 # Table and rows for the rule files.
1470 print"<tr>\n";
1471 print"<td class='base' width='5%'>\n";
1472 print"<input type='checkbox' name='$rulefile' $rulechecked>\n";
1473 print"</td>\n";
1474 print"<td class='base' width='90%'><b>$rulefile</b></td>\n";
1475 print"<td class='base' width='5%' align='right'>\n";
e0cec9fe 1476 print"<a href=\"javascript:showhide('$categoryname')\"><span id='span_$categoryname'>$Lang::tr{'ids show'}</span></a>\n";
80bcd4dd
SS
1477 print"</td>\n";
1478 print"</tr>\n";
1479
1480 # Rows which will be hidden per default and will contain the single rules.
0a1bba1a 1481 print"<tr style='display:none' id='$categoryname'>\n";
80bcd4dd 1482 print"<td colspan='3'>\n";
17726644 1483
f7fcd1c0 1484 # Local vars
80bcd4dd
SS
1485 my $lines;
1486 my $rows;
1487 my $col;
f9c2147d 1488
80bcd4dd
SS
1489 # New table for the single rules.
1490 print "<table width='100%'>\n";
e5738079 1491
80bcd4dd
SS
1492 # Loop over rule file rules
1493 foreach my $sid (sort {$a <=> $b} keys(%{$idsrules{$rulefile}})) {
1494 # Local vars
1495 my $ruledefchecked = '';
3ffee04b 1496
80bcd4dd
SS
1497 # Skip rulefile itself.
1498 next if ($sid eq "Rulefile");
f7fcd1c0 1499
80bcd4dd
SS
1500 # If 2 rules have been displayed, start a new row
1501 if (($lines % 2) == 0) {
1502 print "</tr><tr>\n";
1503
1504 # Increase rows by once.
1505 $rows++;
1506 }
1507
1508 # Colour lines.
1509 if ($rows % 2) {
1510 $col="bgcolor='$color{'color20'}'";
1511 } else {
1512 $col="bgcolor='$color{'color22'}'";
1513 }
f7fcd1c0 1514
80bcd4dd
SS
1515 # Set rule state
1516 if ($idsrules{$rulefile}{$sid}{'State'} eq 'on') {
1517 $ruledefchecked = 'CHECKED';
1518 }
1519
1520 # Create rule checkbox and display rule description
1521 print "<td class='base' width='5%' align='right' $col>\n";
1522 print "<input type='checkbox' NAME='$sid' $ruledefchecked>\n";
1523 print "</td>\n";
1524 print "<td class='base' width='45%' $col>$idsrules{$rulefile}{$sid}{'Description'}</td>";
1525
1526 # Increment rule count
1527 $lines++;
f7fcd1c0 1528 }
3ffee04b 1529
80bcd4dd
SS
1530 # If do not have a second rule for row, create empty cell
1531 if (($lines % 2) != 0) {
1532 print "<td class='base'></td>";
1533 }
17726644 1534
80bcd4dd
SS
1535 # Close display table
1536 print "</tr></table></td></tr>";
f7fcd1c0
SS
1537 }
1538
1539 # Close display table
80bcd4dd 1540 print "</table>";
17726644 1541
9268cddf 1542 print <<END
2999f1d2
CS
1543<table width='100%'>
1544<tr>
4efc8ccd
SS
1545 <td width='100%' align='right'>
1546 <input type='submit' value='$Lang::tr{'fwhost back'}'>
1547 <input type='submit' name='RULESET' value='$Lang::tr{'ids apply'}'>
1548 </td>
2999f1d2
CS
1549</tr>
1550</table>
298723b9 1551</form>
3ffee04b
CS
1552END
1553;
9268cddf
MT
1554 &Header::closebox();
1555 }
80bcd4dd
SS
1556}
1557
2f252efa
SS
1558#
1559## Function to show section for add/edit a provider.
1560#
1561sub show_add_provider() {
aba3cbe5 1562 my %used_providers = ();
2f252efa
SS
1563 my @subscription_providers;
1564
aba3cbe5
SS
1565 # Read -in providers settings file.
1566 &General::readhasharray("$IDS::providers_settings_file", \%used_providers);
1567
2f252efa
SS
1568 # Get all supported ruleset providers.
1569 my @ruleset_providers = &IDS::get_ruleset_providers();
1570
1571 ### Java Script ###
1572 print "<script>\n";
1573
1574 # Generate Java Script Object which contains the URL of the providers.
1575 print "\t// Object, which contains the webpages of the ruleset providers.\n";
1576 print "\tvar url = {\n";
1577
1578 # Loop through the array of supported providers.
1579 foreach my $provider (@ruleset_providers) {
1580 # Check if the provider requires a subscription.
1581 if ($IDS::Ruleset::Providers{$provider}{'requires_subscription'} eq "True") {
1582 # Add the provider to the array of subscription_providers.
1583 push(@subscription_providers, $provider);
1584 }
1585
1586 # Grab the URL for the provider.
1587 my $url = $IDS::Ruleset::Providers{$provider}{'website'};
1588
1589 # Print the URL to the Java Script Object.
1590 print "\t\t$provider: \"$url\"\,\n";
1591 }
1592
1593 # Close the Java Script Object declaration.
1594 print "\t}\;\n\n";
1595
1596 # Generate Java Script Array which contains the provider that requires a subscription.
1597 my $line = "";
1598 $line = join("', '", @subscription_providers);
1599
1600 print "\t// Array which contains the providers that requires a subscription.\n";
1601 print "\tsubscription_provider = ['$line']\;\n\n";
1602
1603print <<END
1604 // Java Script function to swap the text input field for
1605 // entering a subscription code.
1606 var update_provider = function() {
1607 if(inArray(\$('#PROVIDER').val(), subscription_provider)) {
1608 \$('.subscription_code').show();
1609 } else {
1610 \$('.subscription_code').hide();
1611 }
1612
1613 // Call function to change the website url.
1614 change_url(\$('#PROVIDER').val());
1615 };
1616
1617 // Java Script function to check if a given value is part of
1618 // an array.
1619 function inArray(value,array) {
1620 var count=array.length;
1621
1622 for(var i=0;i<count;i++) {
1623 if(array[i]===value){
1624 return true;
1625 }
1626 }
1627
1628 return false;
1629 }
1630
1631 // Tiny function to change the website url based on the selected element in the "PROVIDERS"
1632 // dropdown menu.
1633 function change_url(provider) {
1634 // Get and change the href to the corresponding url.
1635 document.getElementById("website").href = url[provider];
1636 }
1637
1638 // JQuery function to call corresponding function when
1639 // the ruleset provider is changed or the page is loaded for showing/hiding
1640 // the subscription_code area.
1641 \$(document).ready(function() {
1642 \$('#PROVIDER').change(update_provider);
1643 update_provider();
1644 });
1645
1646 </script>
1647END
1648;
1649
2f252efa
SS
1650 # Check if an existing provider should be edited.
1651 if($cgiparams{'PROVIDERS'} eq "$Lang::tr{'edit'}") {
1652 # Check if autoupdate is enabled for this provider.
bb4c30c6 1653 if ($used_providers{$cgiparams{'ID'}}[2] eq "enabled") {
2f252efa
SS
1654 # Set the checkbox to be checked.
1655 $checked{'ENABLE_AUTOUPDATE'} = "checked='checked'";
1656 }
962e58cd
SS
1657
1658 # Display section to force an rules update and to reset the provider.
1659 &show_additional_provider_actions();
1660
2f252efa
SS
1661 } elsif ($cgiparams{'PROVIDERS'} eq "$Lang::tr{'ids add provider'}") {
1662 # Set the autoupdate to true as default.
1663 $checked{'ENABLE_AUTOUPDATE'} = "checked='checked'";
1664 }
1665
962e58cd
SS
1666 &Header::openbox('100%', 'center', $Lang::tr{'ids provider settings'});
1667
2f252efa
SS
1668print <<END
1669 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1670 <table width='100%' border='0'>
1671 <tr>
1672 <td colspan='2'><b>$Lang::tr{'ids provider'}</b></td>
1673 </tr>
1674
1675 <tr>
1676 <td width='40%'>
1677 <input type='hidden' name='ID' value='$cgiparams{'ID'}'>
2f252efa
SS
1678END
1679;
02fee15e
SS
1680 # Value to allow disabling the dropdown menu.
1681 my $disabled;
1682
1683 # Check if we are in edit mode.
1684 if ($cgiparams{'PROVIDERS'} eq "$Lang::tr{'edit'}") {
1685 $disabled = "disabled";
1686
1687 # Add hidden input with the provider because the disable select does not provider
1688 # this.
1689 print "<input type='hidden' name='PROVIDER' value='$used_providers{$cgiparams{'ID'}}[0]'>\n";
1690 }
1691
1692 print "<select name='PROVIDER' id='PROVIDER' $disabled>\n";
2f252efa
SS
1693 # Loop through the array of ruleset providers.
1694 foreach my $provider (@ruleset_providers) {
1695 # Get the provider name.
1696 my $provider_name = &get_provider_name($provider);
1697
1698 # Pre-select the provider if one is given.
1699 if (($used_providers{$cgiparams{'ID'}}[0] eq "$provider") || ($cgiparams{'PROVIDER'} eq "$provider")) {
1700 $selected{$provider} = "selected='selected'";
1701 }
1702
1703 # Add the provider to the dropdown menu.
1704 print "<option value='$provider' $selected{$provider}>$provider_name</option>\n";
1705 }
1706print <<END
1707 </select>
1708 </td>
1709
1710 <td width='60%'>
1711 <b><a id="website" target="_blank" href="#">$Lang::tr{'ids visit provider website'}</a></b>
1712 </td>
1713 </tr>
1714
1715 <tr>
1716 <td colspan='2'><br><br></td>
1717 </tr>
1718
1719 <tr class='subscription_code' style='display:none' id='subscription_code'>
1720 <td colspan='2'>
1721 <table border='0'>
1722 <tr>
1723 <td>
1724 <b>$Lang::tr{'subscription code'}</b>
1725 </td>
1726 </tr>
1727
1728 <tr>
1729 <td>
1730 <input type='text' size='40' name='SUBSCRIPTION_CODE' value='$used_providers{$cgiparams{'ID'}}[1]'>
1731 </td>
1732 </tr>
1733
1734 <tr>
1735 <td><br><br></td>
1736 </tr>
1737 </table>
1738 </td>
1739 </tr>
1740
1741 <tr>
1742 <td colspan='2'>
1743 <input type='checkbox' name='ENABLE_AUTOUPDATE' $checked{'ENABLE_AUTOUPDATE'}>&nbsp;$Lang::tr{'ids enable automatic updates'}
1744 </td>
1745 </tr>
1746
1747 <tr>
1748 <td colspan='2' align='right'>
1749 <input type='submit' value='$Lang::tr{'back'}'>
1750END
1751;
1752 # Check if a provider should be added or edited.
1753 if ($cgiparams{'PROVIDERS'} eq "$Lang::tr{'edit'}") {
1754 # Display button for updating the existing provider.
1755 print "<input type='submit' name='PROVIDERS' value='$Lang::tr{'update'}'>\n";
1756 } else {
1757 # Display button to add the new provider.
1758 print "<input type='submit' name='PROVIDERS' value='$Lang::tr{'add'}'>\n";
1759 }
1760print <<END
1761 </td>
1762 </tr>
1763 </table>
1764 </form>
1765END
1766;
1767 &Header::closebox();
1768}
1769
962e58cd
SS
1770#
1771## Function to show the area where additional provider actions can be done.
1772#
1773sub show_additional_provider_actions() {
1774 my $disabled;
1775 my %used_providers = ();
1776
1777 # Read-in providers settings file.
1778 &General::readhasharray("$IDS::providers_settings_file", \%used_providers);
1779
1780 # Assign variable for provider handle.
1781 my $provider = "$used_providers{$cgiparams{'ID'}}[0]";
1782
1783 # Call function to get the path and name for the given providers
1784 # oinkmaster modified sids file.
1785 my $provider_modified_sids_file = &IDS::get_oinkmaster_provider_modified_sids_file($provider);
1786
1787 # Disable the reset provider button if no provider modified sids file exists.
1788 unless (-f $provider_modified_sids_file) {
1789 $disabled = "disabled";
1790 }
1791
1792 &Header::openbox('100%', 'center', "");
1793 print <<END
1794 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
1795 <table width='100%' border="0">
1796 <tr>
1797 <td align='center'>
1798 <input type='hidden' name='PROVIDER' value='$provider'>
1799 <input type='submit' name='PROVIDERS' value='$Lang::tr{'ids reset provider'}' $disabled>
1800 <input type='submit' name='PROVIDERS' value='$Lang::tr{'ids force ruleset update'}'>
1801 </td>
1802 </tr>
1803 </table>
1804 </form>
1805END
1806;
1807 &Header::closebox();
1808}
1809
27760092
SS
1810#
1811## A function to display a notice, to lock the webpage and
1812## tell the user which action currently will be performed.
1813#
1814sub working_notice ($) {
1815 my ($message) = @_;
1816
1817 &Header::openpage($Lang::tr{'intrusion detection system'}, 1, '');
1818 &Header::openbigbox('100%', 'left', '', $errormessage);
1819 &Header::openbox( 'Waiting', 1,);
1820 print <<END;
1821 <table>
1822 <tr>
1823 <td><img src='/images/indicator.gif' alt='$Lang::tr{'aktiv'}' /></td>
1824 <td>$message</td>
1825 </tr>
1826 </table>
1827END
1828 &Header::closebox();
1829 &Header::closebigbox();
1830 &Header::closepage();
1831}
1832
3983aebd
SS
1833#
1834## A tiny function to perform a reload of the webpage after one second.
1835#
1836sub reload () {
1837 print "<meta http-equiv='refresh' content='1'>\n";
1838
1839 # Stop the script.
1840 exit;
a70d269a
SS
1841}
1842
25f5cb0d
SS
1843#
1844## Private function to read-in and parse rules of a given rulefile.
1845#
1846## The given file will be read, parsed and all valid rules will be stored by ID,
9d18656b 1847## message/description and it's state in the idsrules hash.
25f5cb0d 1848#
3da6e01b
SS
1849sub readrulesfile ($) {
1850 my $rulefile = shift;
1851
1852 # Open rule file and read in contents
298ef5ba 1853 open(RULEFILE, "$IDS::rulespath/$rulefile") or die "Unable to read $rulefile!";
3da6e01b
SS
1854
1855 # Store file content in an array.
1856 my @lines = <RULEFILE>;
1857
1858 # Close file.
1859 close(RULEFILE);
1860
1861 # Loop over rule file contents
1862 foreach my $line (@lines) {
1863 # Remove whitespaces.
1864 chomp $line;
1865
1866 # Skip blank lines.
1867 next if ($line =~ /^\s*$/);
1868
1869 # Local vars.
1870 my $sid;
1871 my $msg;
1872
1873 # Gather rule sid and message from the ruleline.
1874 if ($line =~ m/.*msg:\"(.*?)\"\; .* sid:(.*?); /) {
1875 $msg = $1;
1876 $sid = $2;
1877
1878 # Check if a rule has been found.
1879 if ($sid && $msg) {
9d18656b
SS
1880 # Add rule to the idsrules hash.
1881 $idsrules{$rulefile}{$sid}{'Description'} = $msg;
3da6e01b
SS
1882
1883 # Grab status of the rule. Check if ruleline starts with a "dash".
1884 if ($line =~ /^\#/) {
1885 # If yes, the rule is disabled.
9d18656b 1886 $idsrules{$rulefile}{$sid}{'State'} = "off";
3da6e01b
SS
1887 } else {
1888 # Otherwise the rule is enabled.
9d18656b 1889 $idsrules{$rulefile}{$sid}{'State'} = "on";
3da6e01b
SS
1890 }
1891 }
1892 }
b7e29743 1893 }
3da6e01b 1894}
87660964 1895
8d2f6b0b
SS
1896#
1897## Function to get the used memory of a given process-id.
1898#
87660964 1899sub get_memory_usage($) {
004b13b7 1900 my ($pid) = @_;
87660964 1901
004b13b7 1902 my $memory = 0;
87660964 1903
004b13b7 1904 # Try to open the status file for the given process-id on the pseudo
87660964 1905 # file system proc.
004b13b7
SS
1906 if (open(FILE, "/proc/$pid/status")) {
1907 # Loop through the entire file.
1908 while (<FILE>) {
1909 # Splitt current line content and store them into variables.
1910 my ($key, $value) = split(":", $_, 2);
1911
1912 # Check if the current key is the one which contains the memory usage.
1913 # The wanted one is VmRSS which contains the Real-memory (resident set)
1914 # of the entire process.
1915 if ($key eq "VmRSS") {
1916 # Found the memory usage add it to the memory variable.
1917 $memory += $value;
1918
1919 # Break the loop.
1920 last;
1921 }
1922 }
87660964
SS
1923
1924 # Close file handle.
004b13b7 1925 close(FILE);
87660964
SS
1926
1927 # Return memory usage.
1928 return $memory;
004b13b7 1929 }
87660964
SS
1930
1931 # If the file could not be open, return nothing.
1932 return;
1933}
1934
a5d61752
SS
1935#
1936## Function to read-in the given enabled or disables sids file.
1937#
1938sub read_enabled_disabled_sids_file($) {
1939 my ($file) = @_;
1940
1941 # Temporary hash to store the sids and their state. It will be
1942 # returned at the end of this function.
1943 my %temphash;
1944
1945 # Open the given filename.
1946 open(FILE, "$file") or die "Could not open $file. $!\n";
1947
1948 # Loop through the file.
1949 while(<FILE>) {
1950 # Remove newlines.
1951 chomp $_;
1952
1953 # Skip blank lines.
1954 next if ($_ =~ /^\s*$/);
1955
1956 # Skip coments.
1957 next if ($_ =~ /^\#/);
1958
1959 # Splitt line into sid and state part.
1960 my ($state, $sid) = split(" ", $_);
1961
1962 # Skip line if the sid is not numeric.
1963 next unless ($sid =~ /\d+/ );
1964
1965 # Check if the sid was enabled.
1966 if ($state eq "enablesid") {
1967 # Add the sid and its state as enabled to the temporary hash.
1968 $temphash{$sid} = "enabled";
1969 # Check if the sid was disabled.
1970 } elsif ($state eq "disablesid") {
1971 # Add the sid and its state as disabled to the temporary hash.
1972 $temphash{$sid} = "disabled";
1973 # Invalid state - skip the current sid and state.
1974 } else {
1975 next;
1976 }
1977 }
1978
1979 # Close filehandle.
1980 close(FILE);
1981
1982 # Return the hash.
1983 return %temphash;
1984}
0a1bba1a 1985
019e5e9b
SS
1986#
1987## Function to get the provider name from the language file or providers file for a given handle.
1988#
1989sub get_provider_name($) {
1990 my ($handle) = @_;
1991 my $provider_name;
1992
1993 # Get the required translation string for the given provider handle.
1994 my $tr_string = $IDS::Ruleset::Providers{$handle}{'tr_string'};
1995
1996 # Check if the translation string is available in the language files.
1997 if ($Lang::tr{$tr_string}) {
1998 # Use the translated string from the language file.
1999 $provider_name = $Lang::tr{$tr_string};
2000 } else {
2001 # Fallback and use the provider summary from the providers file.
2002 $provider_name = $IDS::Ruleset::Providers{$handle}{'summary'};
2003 }
2004
2005 # Return the obtained provider name.
2006 return $provider_name;
2007}
2008
0a1bba1a
SS
2009#
2010## Private function to convert a given rulefile to a category name.
2011## ( No file extension anymore and if the name contained a dot, it
2012## would be replaced by a underline sign.)
2013#
2014sub _rulefile_to_category($) {
2015 my ($filename) = @_;
2016
2017 # Splitt the filename into single chunks and store them in a
2018 # temorary array.
2019 my @parts = split(/\./, $filename);
2020
2021 # Return / Remove last element of the temporary array.
2022 # This removes the file extension.
2023 pop @parts;
2024
2025 # Join together the single elements of the temporary array.
2026 # If these are more than one, use a "underline" for joining.
2027 my $category = join '_', @parts;
2028
2029 # Return the converted filename.
2030 return $category;
2031}