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