]> git.ipfire.org Git - ipfire-2.x.git/blame - html/cgi-bin/ids.cgi
ids.cgi: Add support for autoupdate of the IDS ruleset
[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 #
9d18656b 5# Copyright (C) 2007-2018 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";
ac1cfefa 32
f2fdd0c1
CS
33my %color = ();
34my %mainsettings = ();
9d18656b 35my %idsrules = ();
1286e0d4 36my %idssettings=();
43263ea6 37my %rulesetsources = ();
298723b9 38my %cgiparams=();
ac1cfefa 39my %checked=();
5a3e0dca 40my %selected=();
b7e29743 41my %ignored=();
0b89daee
SS
42
43# Read-in main settings, for language, theme and colors.
44&General::readhash("${General::swroot}/main/settings", \%mainsettings);
45&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
46
1286e0d4
SS
47# Get the available network zones, based on the config type of the system and store
48# the list of zones in an array.
49my @network_zones = &IDS::get_available_network_zones();
ac1cfefa 50
8d2f6b0b 51# File where the used rulefiles are stored.
101c8881 52my $idsusedrulefilesfile = "$IDS::settingsdir/suricata-used-rulefiles.yaml";
8d2f6b0b
SS
53
54# File where the addresses of the homenet are stored.
55my $idshomenetfile = "$IDS::settingsdir/suricata-homenet.yaml";
56
01ba4be4
SS
57# File which contains the enabled sids.
58my $enabled_sids_file = "$IDS::settingsdir/oinkmaster-enabled-sids.conf";
59
60# File which contains the disabled sids.
61my $disabled_sids_file = "$IDS::settingsdir/oinkmaster-disabled-sids.conf";
62
63# File which contains wheater the rules should be changed.
64my $modify_sids_file = "$IDS::settingsdir/oinkmaster-modify-sids.conf";
65
b7e29743
SS
66# File which stores the configured settings for whitelisted addresses.
67my $ignoredfile = "$IDS::settingsdir/ignored";
68
69# File which contains the rules to whitelist addresses on suricata.
70my $whitelistfile = "$IDS::rulespath/whitelist.rules";
71
43263ea6
SS
72my $errormessage;
73
00512a5a 74# Create files if they does not exist yet.
01ba4be4
SS
75unless (-f "$enabled_sids_file") { &IDS::create_empty_file($enabled_sids_file); }
76unless (-f "$disabled_sids_file") { &IDS::create_empty_file($disabled_sids_file); }
77unless (-f "$modify_sids_file") { &IDS::create_empty_file($modify_sids_file); }
00512a5a 78unless (-f "$idsusedrulefilesfile") { &IDS::create_empty_file($idsusedrulefilesfile); }
b7e29743
SS
79unless (-f "$ignoredfile") { &IDS::create_empty_file($ignoredfile); }
80unless (-f "$whitelistfile" ) { &IDS::create_empty_file($whitelistfile); }
01ba4be4 81
ac1cfefa
MT
82&Header::showhttpheaders();
83
298723b9
SS
84#Get GUI values
85&Header::getcgihash(\%cgiparams);
ac1cfefa 86
b7e29743
SS
87## Add/edit an entry to the ignore file.
88#
89if (($cgiparams{'WHITELIST'} eq $Lang::tr{'add'}) || ($cgiparams{'WHITELIST'} eq $Lang::tr{'update'})) {
90
91 # Check if any input has been performed.
92 if ($cgiparams{'IGNORE_ENTRY_ADDRESS'} ne '') {
93
94 # Check if the given input is no valid IP-address or IP-address with subnet, display an error message.
95 if ((!&General::validip($cgiparams{'IGNORE_ENTRY_ADDRESS'})) && (!&General::validipandmask($cgiparams{'IGNORE_ENTRY_ADDRESS'}))) {
96 $errormessage = "$Lang::tr{'guardian invalid address or subnet'}";
97 }
98 } else {
99 $errormessage = "$Lang::tr{'guardian empty input'}";
100 }
101
102 # Go further if there was no error.
103 if ($errormessage eq '') {
104 my %ignored = ();
105 my $id;
106 my $status;
107
108 # Assign hash values.
109 my $new_entry_address = $cgiparams{'IGNORE_ENTRY_ADDRESS'};
110 my $new_entry_remark = $cgiparams{'IGNORE_ENTRY_REMARK'};
111
112 # Read-in ignoredfile.
113 &General::readhasharray($ignoredfile, \%ignored);
114
115 # Check if we should edit an existing entry and got an ID.
116 if (($cgiparams{'WHITELIST'} eq $Lang::tr{'update'}) && ($cgiparams{'ID'})) {
117 # Assin the provided id.
118 $id = $cgiparams{'ID'};
119
120 # Undef the given ID.
121 undef($cgiparams{'ID'});
122
123 # Grab the configured status of the corresponding entry.
124 $status = $ignored{$id}[2];
125 } else {
126 # Each newly added entry automatically should be enabled.
127 $status = "enabled";
128
129 # Generate the ID for the new entry.
130 #
131 # Sort the keys by their ID and store them in an array.
132 my @keys = sort { $a <=> $b } keys %ignored;
133
134 # Reverse the key array.
135 my @reversed = reverse(@keys);
136
137 # Obtain the last used id.
138 my $last_id = @reversed[0];
139
140 # Increase the last id by one and use it as id for the new entry.
141 $id = ++$last_id;
142 }
143
144 # Add/Modify the entry to/in the ignored hash.
145 $ignored{$id} = ["$new_entry_address", "$new_entry_remark", "$status"];
146
147 # Write the changed ignored hash to the ignored file.
148 &General::writehasharray($ignoredfile, \%ignored);
149
150 # Regenerate the ignore file.
151 &GenerateIgnoreFile();
152 }
153
154 # Check if the IDS is running.
155 if(&IDS::ids_is_running()) {
156 # Call suricatactrl to perform a reload.
157 &IDS::call_suricatactrl("reload");
158 }
159
160## Toggle Enabled/Disabled for an existing entry on the ignore list.
161#
162
163} elsif ($cgiparams{'WHITELIST'} eq $Lang::tr{'toggle enable disable'}) {
164 my %ignored = ();
165
166 # Only go further, if an ID has been passed.
167 if ($cgiparams{'ID'}) {
168 # Assign the given ID.
169 my $id = $cgiparams{'ID'};
170
171 # Undef the given ID.
172 undef($cgiparams{'ID'});
173
174 # Read-in ignoredfile.
175 &General::readhasharray($ignoredfile, \%ignored);
176
177 # Grab the configured status of the corresponding entry.
178 my $status = $ignored{$id}[2];
179
180 # Switch the status.
181 if ($status eq "disabled") {
182 $status = "enabled";
183 } else {
184 $status = "disabled";
185 }
186
187 # Modify the status of the existing entry.
188 $ignored{$id} = ["$ignored{$id}[0]", "$ignored{$id}[1]", "$status"];
189
190 # Write the changed ignored hash to the ignored file.
191 &General::writehasharray($ignoredfile, \%ignored);
192
193 # Regenerate the ignore file.
194 &GenerateIgnoreFile();
195
196 # Check if the IDS is running.
197 if(&IDS::ids_is_running()) {
198 # Call suricatactrl to perform a reload.
199 &IDS::call_suricatactrl("reload");
200 }
201 }
202
203## Remove entry from ignore list.
204#
205} elsif ($cgiparams{'WHITELIST'} eq $Lang::tr{'remove'}) {
206 my %ignored = ();
207
208 # Read-in ignoredfile.
209 &General::readhasharray($ignoredfile, \%ignored);
210
211 # Drop entry from the hash.
212 delete($ignored{$cgiparams{'ID'}});
213
214 # Undef the given ID.
215 undef($cgiparams{'ID'});
216
217 # Write the changed ignored hash to the ignored file.
218 &General::writehasharray($ignoredfile, \%ignored);
219
220 # Regenerate the ignore file.
221 &GenerateIgnoreFile();
222
223 # Check if the IDS is running.
224 if(&IDS::ids_is_running()) {
225 # Call suricatactrl to perform a reload.
226 &IDS::call_suricatactrl("reload");
227 }
228}
229
3983aebd
SS
230# Check if any error has been stored.
231if (-e $IDS::storederrorfile) {
232 # Open file to read in the stored error message.
233 open(FILE, "<$IDS::storederrorfile") or die "Could not open $IDS::storederrorfile. $!\n";
234
235 # Read the stored error message.
236 $errormessage = <FILE>;
237
238 # Close file.
239 close (FILE);
240
241 # Delete the file, which is now not longer required.
242 unlink($IDS::storederrorfile);
243}
244
245
9d18656b 246## Grab all available snort rules and store them in the idsrules hash.
3da6e01b 247#
422204ff 248# Open snort rules directory and do a directory listing.
298ef5ba 249opendir(DIR, $IDS::rulespath) or die $!;
422204ff
SS
250 # Loop through the direcory.
251 while (my $file = readdir(DIR)) {
252
253 # We only want files.
298ef5ba 254 next unless (-f "$IDS::rulespath/$file");
422204ff
SS
255
256 # Ignore empty files.
298ef5ba 257 next if (-z "$IDS::rulespath/$file");
422204ff 258
3da6e01b 259 # Use a regular expression to find files ending in .rules
422204ff
SS
260 next unless ($file =~ m/\.rules$/);
261
3da6e01b 262 # Ignore files which are not read-able.
298ef5ba 263 next unless (-R "$IDS::rulespath/$file");
395e3b90 264
b7e29743
SS
265 # Skip whitelist rules file.
266 next if( $file eq "whitelist.rules");
267
3da6e01b 268 # Call subfunction to read-in rulefile and add rules to
9d18656b 269 # the idsrules hash.
3da6e01b 270 &readrulesfile("$file");
395e3b90 271 }
395e3b90 272
3da6e01b 273closedir(DIR);
395e3b90 274
e5738079
SS
275# Gather used rulefiles.
276#
277# Check if the file for activated rulefiles is not empty.
02844177 278if(-f $idsusedrulefilesfile) {
e5738079 279 # Open the file for used rulefile and read-in content.
02844177 280 open(FILE, $idsusedrulefilesfile) or die "Could not open $idsusedrulefilesfile. $!\n";
e5738079
SS
281
282 # Read-in content.
283 my @lines = <FILE>;
284
285 # Close file.
286 close(FILE);
287
288 # Loop through the array.
289 foreach my $line (@lines) {
290 # Remove newlines.
291 chomp($line);
292
293 # Skip comments.
294 next if ($line =~ /\#/);
295
296 # Skip blank lines.
297 next if ($line =~ /^\s*$/);
298
299 # Gather rule sid and message from the ruleline.
101c8881 300 if ($line =~ /.*- (.*)/) {
e5738079
SS
301 my $rulefile = $1;
302
43ab7d9c
SS
303 # Check if the current rulefile exists in the %idsrules hash.
304 # If not, the file probably does not exist anymore or contains
305 # no rules.
306 if($idsrules{$rulefile}) {
307 # Add the rulefile state to the %idsrules hash.
308 $idsrules{$rulefile}{'Rulefile'}{'State'} = "on";
309 }
e5738079
SS
310 }
311 }
312}
313
298723b9
SS
314# Save ruleset.
315if ($cgiparams{'RULESET'} eq $Lang::tr{'update'}) {
d2212836 316 # Arrays to store which rulefiles have been enabled and will be used.
e5738079 317 my @enabled_rulefiles;
298723b9 318
d2212836
SS
319 # Hash to store the user-enabled and disabled sids.
320 my %enabled_disabled_sids;
321
9d18656b
SS
322 # Loop through the hash of idsrules.
323 foreach my $rulefile(keys %idsrules) {
e5738079
SS
324 # Check if the rulefile is enabled.
325 if ($cgiparams{$rulefile} eq "on") {
326 # Add rulefile to the array of enabled rulefiles.
327 push(@enabled_rulefiles, $rulefile);
b65b5ef3
SS
328
329 # Drop item from cgiparams hash.
330 delete $cgiparams{$rulefile};
e5738079 331 }
466c6779 332 }
e5738079 333
d2212836
SS
334 # Read-in the files for enabled/disabled sids.
335 # This will be done by calling the read_enabled_disabled_sids_file function two times
336 # and merge the returned hashes together into the enabled_disabled_sids hash.
337 %enabled_disabled_sids = (
338 &read_enabled_disabled_sids_file($disabled_sids_file),
339 &read_enabled_disabled_sids_file($enabled_sids_file));
340
9d18656b
SS
341 # Loop through the hash of idsrules.
342 foreach my $rulefile (keys %idsrules) {
298723b9 343 # Loop through the single rules of the rulefile.
9d18656b 344 foreach my $sid (keys %{$idsrules{$rulefile}}) {
c51a044a
SS
345 # Skip the current sid if it is not numeric.
346 next unless ($sid =~ /\d+/ );
347
298723b9
SS
348 # Check if there exists a key in the cgiparams hash for this sid.
349 if (exists($cgiparams{$sid})) {
350 # Look if the rule is disabled.
9d18656b 351 if ($idsrules{$rulefile}{$sid}{'State'} eq "off") {
298723b9
SS
352 # Check if the state has been set to 'on'.
353 if ($cgiparams{$sid} eq "on") {
d2212836
SS
354 # Add/Modify the sid to/in the enabled_disabled_sids hash.
355 $enabled_disabled_sids{$sid} = "enabled";
298723b9
SS
356
357 # Drop item from cgiparams hash.
60333473 358 delete $cgiparams{$rulefile}{$sid};
298723b9
SS
359 }
360 }
361 } else {
362 # Look if the rule is enabled.
9d18656b 363 if ($idsrules{$rulefile}{$sid}{'State'} eq "on") {
298723b9
SS
364 # Check if the state is 'on' and should be disabled.
365 # In this case there is no entry
366 # for the sid in the cgiparams hash.
d2212836
SS
367 # Add/Modify it to/in the enabled_disabled_sids hash.
368 $enabled_disabled_sids{$sid} = "disabled";
298723b9
SS
369
370 # Drop item from cgiparams hash.
60333473 371 delete $cgiparams{$rulefile}{$sid};
298723b9
SS
372 }
373 }
374 }
375 }
376
37659505 377 # Open enabled sid's file for writing.
d2212836 378 open(ENABLED_FILE, ">$enabled_sids_file") or die "Could not write to $enabled_sids_file. $!\n";
37659505
SS
379
380 # Open disabled sid's file for writing.
d2212836
SS
381 open(DISABLED_FILE, ">$disabled_sids_file") or die "Could not write to $disabled_sids_file. $!\n";
382
383 # Write header to the files.
384 print ENABLED_FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
385 print DISABLED_FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
386
387 # Check if the hash for enabled/disabled files contains any entries.
388 if (%enabled_disabled_sids) {
389 # Loop through the hash.
390 foreach my $sid (keys %enabled_disabled_sids) {
391 # Check if the sid is enabled.
392 if ($enabled_disabled_sids{$sid} eq "enabled") {
393 # Print the sid to the enabled_sids file.
394 print ENABLED_FILE "enablesid $sid\n";
395 # Check if the sid is disabled.
396 } elsif ($enabled_disabled_sids{$sid} eq "disabled") {
397 # Print the sid to the disabled_sids file.
398 print DISABLED_FILE "disablesid $sid\n";
399 # Something strange happende - skip the current sid.
400 } else {
401 next;
402 }
37659505
SS
403 }
404 }
298723b9 405
d2212836
SS
406 # Close file for enabled_sids after writing.
407 close(ENABLED_FILE);
408
409 # Close file for disabled_sids after writing.
410 close(DISABLED_FILE);
e5738079
SS
411
412 # Open file for used rulefiles.
02844177 413 open (FILE, ">$idsusedrulefilesfile") or die "Could not write to $idsusedrulefilesfile. $!\n";
e5738079 414
101c8881
SS
415 # Write yaml header to the file.
416 print FILE "%YAML 1.1\n";
417 print FILE "---\n\n";
418
e5738079
SS
419 # Write header to file.
420 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
421
422 # Check if the enabled_rulefiles array contains any entries.
423 if (@enabled_rulefiles) {
b7e29743
SS
424 # Allways load the whitelist.
425 print FILE " - whitelist.rules\n";
426
427 # Loop through the array of rulefiles which should be loaded and write them to the file.
e5738079 428 foreach my $file (@enabled_rulefiles) {
101c8881 429 print FILE " - $file\n";
e5738079
SS
430 }
431 }
432
433 # Close file after writing.
434 close(FILE);
52599865 435
27760092
SS
436 # Lock the webpage and print message.
437 &working_notice("$Lang::tr{'snort working'}");
438
52599865 439 # Call oinkmaster to alter the ruleset.
27760092
SS
440 &IDS::oinkmaster();
441
e2e7880d 442 # Check if the IDS is running.
5a28e721 443 if(&IDS::ids_is_running()) {
e2e7880d
SS
444 # Call suricatactrl to perform a reload.
445 &IDS::call_suricatactrl("reload");
446 }
447
27760092
SS
448 # Reload page.
449 &reload();
52599865
SS
450
451# Download new ruleset.
452} elsif ($cgiparams{'RULESET'} eq $Lang::tr{'download new ruleset'}) {
43263ea6
SS
453 # Check if the red device is active.
454 unless (-e "${General::swroot}/red/active") {
455 $errormessage = $Lang::tr{'could not download latest updates'};
456 }
52599865 457
3983aebd 458 # Check if enought free disk space is availabe.
434001d0
SS
459 if(&IDS::checkdiskspace()) {
460 $errormessage = "$Lang::tr{'not enough disk space'}";
461 }
52599865 462
43263ea6
SS
463 # Check if any errors happend.
464 unless ($errormessage) {
27760092
SS
465 # Lock the webpage and print notice about downloading
466 # a new ruleset.
467 &working_notice("$Lang::tr{'snort working'}");
3983aebd 468
43263ea6 469 # Call subfunction to download the ruleset.
434001d0
SS
470 if(&IDS::downloadruleset()) {
471 $errormessage = $Lang::tr{'could not download latest updates'};
8f22237b 472
3983aebd 473 # Call function to store the errormessage.
434001d0 474 &IDS::_store_error_message($errormessage);
52599865 475
3983aebd
SS
476 # Preform a reload of the page.
477 &reload();
478 } else {
479 # Call subfunction to launch oinkmaster.
480 &IDS::oinkmaster();
43263ea6 481
e2e7880d 482 # Check if the IDS is running.
5a28e721 483 if(&IDS::ids_is_running()) {
e2e7880d
SS
484 # Call suricatactrl to perform a reload.
485 &IDS::call_suricatactrl("reload");
486 }
487
3983aebd
SS
488 # Perform a reload of the page.
489 &reload();
490 }
52599865 491 }
a232b58c 492# Save snort settings.
e0bfd338 493} elsif ($cgiparams{'IDS'} eq $Lang::tr{'save'}) {
bbb6efae
SS
494 my %oldidssettings;
495 my $reload_page;
496
497 # Read-in current (old) IDS settings.
498 &General::readhash("$IDS::settingsdir/settings", \%oldidssettings);
499
a232b58c 500 # Prevent form name from been stored in conf file.
e0bfd338 501 delete $cgiparams{'IDS'};
a232b58c
SS
502
503 # Check if an oinkcode has been provided.
504 if ($cgiparams{'OINKCODE'}) {
505 # Check if the oinkcode contains unallowed chars.
506 unless ($cgiparams{'OINKCODE'} =~ /^[a-z0-9]+$/) {
507 $errormessage = $Lang::tr{'invalid input for oink code'};
508 }
f9c2147d 509 }
ac1cfefa 510
a232b58c
SS
511 # Go on if there are no error messages.
512 if (!$errormessage) {
513 # Store settings into settings file.
02844177 514 &General::writehash("$IDS::settingsdir/settings", \%cgiparams);
a9a91e5f 515 }
8d2f6b0b
SS
516
517 # Generate file to store the home net.
518 &generate_home_net_file();
e2e7880d 519
eadad5fd
SS
520 # Check if the the automatic rule update hass been touched.
521 if($cgiparams{'AUTOUPDATE_INTERVAL'} ne $oldidssettings{'AUTOUPDATE_INTERVAL'}) {
522 # Call suricatactrl to set the new interval.
523 &IDS::call_suricatactrl("cron", $cgiparams{'AUTOUPDATE_INTERVAL'});
524 }
525
dae534f2
SS
526 # Check if the runmode has been changed.
527 if($cgiparams{'RUN_MODE'} ne $oldidssettings{'RUN_MODE'}) {
528 # Open modify sid's file for writing.
529 open(FILE, ">$modify_sids_file") or die "Could not write to $modify_sids_file. $!\n";
bbb6efae 530
dae534f2
SS
531 # Write file header.
532 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
bbb6efae 533
dae534f2
SS
534 # Check if the configured runmode is IPS.
535 if ($cgiparams{'RUN_MODE'} eq 'IPS') {
536 # Tell oinkmaster to switch all rules from alert to drop.
537 print FILE "modifysid \* \"alert\" \| \"drop\"\n";
538 }
bbb6efae 539
dae534f2
SS
540 # Close file handle.
541 close(FILE);
bbb6efae 542
bbb6efae
SS
543 # Check if a ruleset exists.
544 if (%idsrules) {
545 # Lock the webpage and print message.
546 &working_notice("$Lang::tr{'snort working'}");
547
548 # Call oinkmaster to alter the ruleset.
549 &IDS::oinkmaster();
550
551 # Set reload_page to "True".
552 $reload_page="True";
553 }
554 }
555
e2e7880d
SS
556 # Check if the IDS currently is running.
557 if(&IDS::ids_is_running()) {
558 # Check if ENABLE_IDS is set to on.
559 if($cgiparams{'ENABLE_IDS'} eq "on") {
560 # Call suricatactrl to perform a reload of suricata.
561 &IDS::call_suricatactrl("reload");
562 } else {
563 # Call suricatactrl to stop suricata.
564 &IDS::call_suricatactrl("stop");
565 }
566 } else {
567 # Call suricatactrl to start suricata.
568 &IDS::call_suricatactrl("start");
569 }
bbb6efae
SS
570
571 # Check if the page should be reloaded.
572 if ($reload_page) {
573 # Perform a reload of the page.
574 &reload();
575 }
ac1cfefa
MT
576}
577
1286e0d4
SS
578# Read-in idssettings
579&General::readhash("$IDS::settingsdir/settings", \%idssettings);
580
a4ccfcbb
SS
581# If the runmode has not been configured yet, set default value.
582unless(exists($idssettings{'RUN_MODE'})) {
583 # Set default to IPS.
584 $idssettings{'RUN_MODE'} = 'IPS';
585}
586
b7e29743
SS
587# Read-in ignored hosts.
588&General::readhasharray("$IDS::settingsdir/ignored", \%ignored);
589
1286e0d4
SS
590$checked{'ENABLE_IDS'}{'off'} = '';
591$checked{'ENABLE_IDS'}{'on'} = '';
592$checked{'ENABLE_IDS'}{$idssettings{'ENABLE_IDS'}} = "checked='checked'";
a4ccfcbb
SS
593$checked{'RUN_MODE'}{'IDS'} = '';
594$checked{'RUN_MODE'}{'IPS'} = '';
595$checked{'RUN_MODE'}{$idssettings{'RUN_MODE'}} = "checked='checked'";
5a3e0dca 596$selected{'RULES'}{'nothing'} = '';
5a3e0dca 597$selected{'RULES'}{'community'} = '';
a0fa489f 598$selected{'RULES'}{'emerging'} = '';
5a3e0dca
MT
599$selected{'RULES'}{'registered'} = '';
600$selected{'RULES'}{'subscripted'} = '';
1286e0d4 601$selected{'RULES'}{$idssettings{'RULES'}} = "selected='selected'";
eadad5fd
SS
602$selected{'AUTOUPDATE_INTERVAL'}{'off'} = '';
603$selected{'AUTOUPDATE_INTERVAL'}{'daily'} = '';
604$selected{'AUTOUPDATE_INTERVAL'}{'weekly'} = '';
605$selected{'AUTOUPDATE_INTERVAL'}{$idssettings{'AUTOUPDATE_INTERVAL'}} = "selected='selected'";
ac1cfefa
MT
606
607&Header::openpage($Lang::tr{'intrusion detection system'}, 1, '');
608
17726644
SS
609### Java Script ###
610print <<END
611<script>
612 // Tiny java script function to show/hide the rules
613 // of a given category.
614 function showhide(tblname) {
615 \$("#" + tblname).toggle();
616 }
617</script>
618END
619;
620
ac1cfefa
MT
621&Header::openbigbox('100%', 'left', '', $errormessage);
622
623if ($errormessage) {
624 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
625 print "<class name='base'>$errormessage\n";
626 print "&nbsp;</class>\n";
627 &Header::closebox();
628}
629
87660964 630# Draw current state of the IDS
7cc8a0e5 631&Header::openbox('100%', 'left', $Lang::tr{'intrusion detection system'});
1504a375 632
87660964
SS
633# Check if the IDS is running and obtain the process-id.
634my $pid = &IDS::ids_is_running();
635
636# Display some useful information, if suricata daemon is running.
637if ($pid) {
638 # Gather used memory.
639 my $memory = &get_memory_usage($pid);
640
641 print <<END;
642 <table width='95%' cellspacing='0' class='tbl'>
643 <tr>
644 <th bgcolor='$color{'color20'}' colspan='3' align='left'><strong>$Lang::tr{'intrusion detection'}</strong></th>
645 </tr>
646
647 <tr>
648 <td class='base'>$Lang::tr{'guardian daemon'}</td>
649 <td align='center' colspan='2' width='75%' bgcolor='${Header::colourgreen}'><font color='white'><strong>$Lang::tr{'running'}</strong></font></td>
650 </tr>
651
652 <tr>
653 <td class='base'></td>
654 <td bgcolor='$color{'color20'}' align='center'><strong>PID</strong></td>
655 <td bgcolor='$color{'color20'}' align='center'><strong>$Lang::tr{'memory'}</strong></td>
656 </tr>
657
658 <tr>
659 <td class='base'></td>
660 <td bgcolor='$color{'color22'}' align='center'>$pid</td>
661 <td bgcolor='$color{'color22'}' align='center'>$memory KB</td>
662 </tr>
663 </table>
664END
665} else {
666 # Otherwise display a hint that the service is not launched.
667 print <<END;
668 <table width='95%' cellspacing='0' class='tbl'>
669 <tr>
670 <th bgcolor='$color{'color20'}' colspan='3' align='left'><strong>$Lang::tr{'intrusion detection'}</strong></th>
671 </tr>
672
673 <tr>
674 <td class='base'>$Lang::tr{'guardian daemon'}</td>
675 <td align='center' width='75%' bgcolor='${Header::colourred}'><font color='white'><strong>$Lang::tr{'stopped'}</strong></font></td>
676 </tr>
677 </table>
87660964
SS
678END
679}
680&Header::closebox();
681
682# Draw elements for IDS configuration.
683&Header::openbox('100%', 'center', $Lang::tr{'settings'});
684
1504a375
SS
685my $rulesdate;
686
687# Check if a ruleset allready has been downloaded.
a69b96d2 688if ( -f "$IDS::rulestarball"){
1504a375 689 # Call stat on the filename to obtain detailed information.
a69b96d2 690 my @Info = stat("$IDS::rulestarball");
1504a375
SS
691
692 # Grab details about the creation time.
693 $rulesdate = localtime($Info[9]);
694}
695
ac1cfefa 696print <<END
1504a375
SS
697<form method='post' action='$ENV{'SCRIPT_NAME'}'>
698 <table width='100%' border='0'>
699 <tr>
a4ccfcbb 700 <td class='base' colspan='4'>
1286e0d4
SS
701 <input type='checkbox' name='ENABLE_IDS' $checked{'ENABLE_IDS'}{'on'}>$Lang::tr{'ids activate'} $Lang::tr{'intrusion detection system'}
702 </td>
a4ccfcbb 703 </tr>
1286e0d4 704
a4ccfcbb
SS
705 <tr>
706 <td colspan='4'><br><br></td>
1286e0d4
SS
707 </tr>
708
709 <tr>
a4ccfcbb 710 <td class='base' colspan='4'><b>$Lang::tr{'runmode'}</b></td>
1286e0d4 711 </tr>
1504a375 712
1286e0d4 713 <tr>
a4ccfcbb
SS
714 <td class='base' colspan='4'>
715 <input type='radio' name='RUN_MODE' value='IDS' $checked{'RUN_MODE'}{'IDS'}>$Lang::tr{'intrusion detection system2'} &nbsp&nbsp&nbsp
716 <input type='radio' name='RUN_MODE' value='IPS' $checked{'RUN_MODE'}{'IPS'}>$Lang::tr{'intrusion prevention system'}
1504a375 717 </td>
a4ccfcbb 718 </tr>
1504a375 719
a4ccfcbb
SS
720 <tr>
721 <td colspan='4'><br></td>
1286e0d4 722 </tr>
a4ccfcbb
SS
723
724 <tr>
725 <td colspan='4'><b>$Lang::tr{'ids traffic analyze'}</b><br></td>
726 </tr>
727
728 <tr>
ac1cfefa
MT
729END
730;
1504a375 731
1286e0d4
SS
732# Loop through the array of available networks and print config options.
733foreach my $zone (@network_zones) {
734 my $checked_input;
735 my $checked_forward;
1504a375 736
1286e0d4
SS
737 # Convert current zone name to upper case.
738 my $zone_upper = uc($zone);
1504a375 739
1286e0d4 740 # Grab checkbox status from settings hash.
a4ccfcbb 741 if ($idssettings{"ENABLE_IDS_$zone_upper"} eq "on") {
1286e0d4
SS
742 $checked_input = "checked = 'checked'";
743 }
1504a375 744
1286e0d4 745 print "<td class='base' width='25%'>\n";
a4ccfcbb 746 print "<input type='checkbox' name='ENABLE_IDS_$zone_upper' $checked_input>$Lang::tr{'enabled on'} $Lang::tr{$zone}\n";
1286e0d4 747 print "</td>\n";
ac1cfefa 748}
1b73b07e 749
ac1cfefa 750print <<END
1504a375
SS
751 </tr>
752
753 <tr>
754 <td colspan='4'><br><br></td>
755 </tr>
756
757 <tr>
eadad5fd
SS
758 <td colspan='2'><b>$Lang::tr{'ids rules update'}</b></td>
759 <td colspan='2'><b>$Lang::tr{'ids automatic rules update'}</b></td>
1504a375
SS
760 </tr>
761
762 <tr>
eadad5fd 763 <td colspan='2'><select name='RULES'>
5a3e0dca 764 <option value='nothing' $selected{'RULES'}{'nothing'} >$Lang::tr{'no'}</option>
a0fa489f 765 <option value='emerging' $selected{'RULES'}{'emerging'} >$Lang::tr{'emerging rules'}</option>
5a3e0dca
MT
766 <option value='community' $selected{'RULES'}{'community'} >$Lang::tr{'community rules'}</option>
767 <option value='registered' $selected{'RULES'}{'registered'} >$Lang::tr{'registered user rules'}</option>
768 <option value='subscripted' $selected{'RULES'}{'subscripted'} >$Lang::tr{'subscripted user rules'}</option>
769 </select>
1504a375 770 </td>
eadad5fd
SS
771
772 <td colspan='2'>
773 <select name='AUTOUPDATE_INTERVAL'>
774 <option value='off' $selected{'AUTOUPDATE_INTERVAL'}{'off'} >$Lang::tr{'no'}</option>
775 <option value='daily' $selected{'AUTOUPDATE_INTERVAL'}{'daily'} >$Lang::tr{'urlfilter daily'}</option>
776 <option value='weekly' $selected{'AUTOUPDATE_INTERVAL'}{'weekly'} >$Lang::tr{'urlfilter weekly'}</option>
777 </select>
778 </td>
1504a375
SS
779 </tr>
780
781 <tr>
782 <td colspan='4'>
783 <br>$Lang::tr{'ids rules license'} <a href='https://www.snort.org/subscribe' target='_blank'>www.snort.org</a>$Lang::tr{'ids rules license1'}</br>
784 <br>$Lang::tr{'ids rules license2'} <a href='https://www.snort.org/account/oinkcode' target='_blank'>Get an Oinkcode</a>, $Lang::tr{'ids rules license3'}</br>
785 </td>
786 </tr>
787
788 <tr>
1286e0d4 789 <td colspan='4' nowrap='nowrap'>Oinkcode:&nbsp;<input type='text' size='40' name='OINKCODE' value='$idssettings{'OINKCODE'}'></td>
1504a375
SS
790 </tr>
791
792 <tr>
793 <td colspan='4' align='left'><br>
794 <input type='submit' name='RULESET' value='$Lang::tr{'download new ruleset'}'>&nbsp;$Lang::tr{'updates installed'}: $rulesdate
795 </td>
796
797 </tr>
798 </table>
799
800 <br><br>
801
802 <table width='100%'>
803 <tr>
e0bfd338 804 <td align='right'><input type='submit' name='IDS' value='$Lang::tr{'save'}' /></td>
1504a375
SS
805 </tr>
806 </table>
ac1cfefa
MT
807</form>
808END
809;
810
ac1cfefa 811&Header::closebox();
fbfdb241 812
b7e29743
SS
813#
814# Whitelist / Ignorelist
815#
816&Header::openbox('100%', 'center', $Lang::tr{'guardian ignored hosts'});
817
818print <<END;
819 <table width='100%'>
820 <tr>
821 <td class='base' bgcolor='$color{'color20'}'><b>$Lang::tr{'ip address'}</b></td>
822 <td class='base' bgcolor='$color{'color20'}'><b>$Lang::tr{'remark'}</b></td>
823 <td class='base' colspan='3' bgcolor='$color{'color20'}'></td>
824 </tr>
825END
826 # Check if some hosts have been added to be ignored.
827 if (keys (%ignored)) {
828 my $col = "";
829
830 # Loop through all entries of the hash.
831 while( (my $key) = each %ignored) {
832 # Assign data array positions to some nice variable names.
833 my $address = $ignored{$key}[0];
834 my $remark = $ignored{$key}[1];
835 my $status = $ignored{$key}[2];
836
837 # Check if the key (id) number is even or not.
838 if ($cgiparams{'ID'} eq $key) {
839 $col="bgcolor='${Header::colouryellow}'";
840 } elsif ($key % 2) {
841 $col="bgcolor='$color{'color22'}'";
842 } else {
843 $col="bgcolor='$color{'color20'}'";
844 }
845
846 # Choose icon for the checkbox.
847 my $gif;
848 my $gdesc;
849
850 # Check if the status is enabled and select the correct image and description.
851 if ($status eq 'enabled' ) {
852 $gif = 'on.gif';
853 $gdesc = $Lang::tr{'click to disable'};
854 } else {
855 $gif = 'off.gif';
856 $gdesc = $Lang::tr{'click to enable'};
857 }
858
859print <<END;
860 <tr>
861 <td width='20%' class='base' $col>$address</td>
862 <td width='65%' class='base' $col>$remark</td>
863
864 <td align='center' $col>
865 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
866 <input type='hidden' name='WHITELIST' value='$Lang::tr{'toggle enable disable'}' />
867 <input type='image' name='$Lang::tr{'toggle enable disable'}' src='/images/$gif' alt='$gdesc' title='$gdesc' />
868 <input type='hidden' name='ID' value='$key' />
869 </form>
870 </td>
871
872 <td align='center' $col>
873 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
874 <input type='hidden' name='WHITELIST' value='$Lang::tr{'edit'}' />
875 <input type='image' name='$Lang::tr{'edit'}' src='/images/edit.gif' alt='$Lang::tr{'edit'}' title='$Lang::tr{'edit'}' />
876 <input type='hidden' name='ID' value='$key' />
877 </form>
878 </td>
879
880 <td align='center' $col>
881 <form method='post' name='$key' action='$ENV{'SCRIPT_NAME'}'>
882 <input type='image' name='$Lang::tr{'remove'}' src='/images/delete.gif' title='$Lang::tr{'remove'}' alt='$Lang::tr{'remove'}'>
883 <input type='hidden' name='ID' value='$key'>
884 <input type='hidden' name='WHITELIST' value='$Lang::tr{'remove'}'>
885 </form>
886 </td>
887 </tr>
888END
889 }
890 } else {
891 # Print notice that currently no hosts are ignored.
892 print "<tr>\n";
893 print "<td class='base' colspan='2'>$Lang::tr{'guardian no entries'}</td>\n";
894 print "</tr>\n";
895 }
896
897 print "</table>\n";
898
899 # Section to add new elements or edit existing ones.
900print <<END;
901 <br>
902 <hr>
903 <br>
904
905 <div align='center'>
906 <table width='100%'>
907END
908
909 # Assign correct headline and button text.
910 my $buttontext;
911 my $entry_address;
912 my $entry_remark;
913
914 # Check if an ID (key) has been given, in this case an existing entry should be edited.
915 if ($cgiparams{'ID'} ne '') {
916 $buttontext = $Lang::tr{'update'};
917 print "<tr><td class='boldbase' colspan='3'><b>$Lang::tr{'update'}</b></td></tr>\n";
918
919 # Grab address and remark for the given key.
920 $entry_address = $ignored{$cgiparams{'ID'}}[0];
921 $entry_remark = $ignored{$cgiparams{'ID'}}[1];
922 } else {
923 $buttontext = $Lang::tr{'add'};
924 print "<tr><td class='boldbase' colspan='3'><b>$Lang::tr{'dnsforward add a new entry'}</b></td></tr>\n";
925 }
926
927print <<END;
928 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
929 <input type='hidden' name='ID' value='$cgiparams{'ID'}'>
930 <tr>
931 <td width='30%'>$Lang::tr{'ip address'}: </td>
932 <td width='50%'><input type='text' name='IGNORE_ENTRY_ADDRESS' value='$entry_address' size='24' /></td>
933
934 <td width='30%'>$Lang::tr{'remark'}: </td>
935 <td wicth='50%'><input type='text' name=IGNORE_ENTRY_REMARK value='$entry_remark' size='24' /></td>
936 <td align='center' width='20%'><input type='submit' name='WHITELIST' value='$buttontext' /></td>
937 </tr>
938 </form>
939 </table>
940 </div>
941END
942
943&Header::closebox();
944
80bcd4dd
SS
945# Only show the section for configuring the ruleset if one is present.
946if (%idsrules) {
947 &Header::openbox('100%', 'LEFT', $Lang::tr{'intrusion detection system rules'});
298723b9 948
80bcd4dd 949 print"<form method='POST' action='$ENV{'SCRIPT_NAME'}'>\n";
ce0e83b3 950
80bcd4dd
SS
951 # Output display table for rule files
952 print "<table width='100%'>\n";
f7fcd1c0 953
80bcd4dd
SS
954 # Local variable required for java script to show/hide
955 # rules of a rulefile.
956 my $rulesetcount = 1;
f7fcd1c0 957
80bcd4dd
SS
958 # Loop over each rule file
959 foreach my $rulefile (sort keys(%idsrules)) {
960 my $rulechecked = '';
3ffee04b 961
80bcd4dd
SS
962 # Check if rule file is enabled
963 if ($idsrules{$rulefile}{'Rulefile'}{'State'} eq 'on') {
964 $rulechecked = 'CHECKED';
965 }
966
967 # Table and rows for the rule files.
968 print"<tr>\n";
969 print"<td class='base' width='5%'>\n";
970 print"<input type='checkbox' name='$rulefile' $rulechecked>\n";
971 print"</td>\n";
972 print"<td class='base' width='90%'><b>$rulefile</b></td>\n";
973 print"<td class='base' width='5%' align='right'>\n";
974 print"<a href=\"javascript:showhide('ruleset$rulesetcount')\">SHOW</a>\n";
975 print"</td>\n";
976 print"</tr>\n";
977
978 # Rows which will be hidden per default and will contain the single rules.
979 print"<tr style='display:none' id='ruleset$rulesetcount'>\n";
980 print"<td colspan='3'>\n";
17726644 981
f7fcd1c0 982 # Local vars
80bcd4dd
SS
983 my $lines;
984 my $rows;
985 my $col;
f9c2147d 986
80bcd4dd
SS
987 # New table for the single rules.
988 print "<table width='100%'>\n";
e5738079 989
80bcd4dd
SS
990 # Loop over rule file rules
991 foreach my $sid (sort {$a <=> $b} keys(%{$idsrules{$rulefile}})) {
992 # Local vars
993 my $ruledefchecked = '';
3ffee04b 994
80bcd4dd
SS
995 # Skip rulefile itself.
996 next if ($sid eq "Rulefile");
f7fcd1c0 997
80bcd4dd
SS
998 # If 2 rules have been displayed, start a new row
999 if (($lines % 2) == 0) {
1000 print "</tr><tr>\n";
1001
1002 # Increase rows by once.
1003 $rows++;
1004 }
1005
1006 # Colour lines.
1007 if ($rows % 2) {
1008 $col="bgcolor='$color{'color20'}'";
1009 } else {
1010 $col="bgcolor='$color{'color22'}'";
1011 }
f7fcd1c0 1012
80bcd4dd
SS
1013 # Set rule state
1014 if ($idsrules{$rulefile}{$sid}{'State'} eq 'on') {
1015 $ruledefchecked = 'CHECKED';
1016 }
1017
1018 # Create rule checkbox and display rule description
1019 print "<td class='base' width='5%' align='right' $col>\n";
1020 print "<input type='checkbox' NAME='$sid' $ruledefchecked>\n";
1021 print "</td>\n";
1022 print "<td class='base' width='45%' $col>$idsrules{$rulefile}{$sid}{'Description'}</td>";
1023
1024 # Increment rule count
1025 $lines++;
f7fcd1c0 1026 }
3ffee04b 1027
80bcd4dd
SS
1028 # If do not have a second rule for row, create empty cell
1029 if (($lines % 2) != 0) {
1030 print "<td class='base'></td>";
1031 }
17726644 1032
80bcd4dd
SS
1033 # Close display table
1034 print "</tr></table></td></tr>";
17726644 1035
80bcd4dd
SS
1036 # Finished whith the rule file, increase count.
1037 $rulesetcount++;
f7fcd1c0
SS
1038 }
1039
1040 # Close display table
80bcd4dd 1041 print "</table>";
17726644 1042
f7fcd1c0 1043print <<END
2999f1d2
CS
1044<table width='100%'>
1045<tr>
298723b9 1046 <td width='100%' align='right'><input type='submit' name='RULESET' value='$Lang::tr{'update'}'>
3ffee04b
CS
1047 &nbsp; <!-- space for future online help link -->
1048 </td>
2999f1d2
CS
1049</tr>
1050</table>
298723b9 1051</form>
3ffee04b
CS
1052END
1053;
80bcd4dd
SS
1054 &Header::closebox();
1055}
1056
ac1cfefa
MT
1057&Header::closebigbox();
1058&Header::closepage();
1059
27760092
SS
1060#
1061## A function to display a notice, to lock the webpage and
1062## tell the user which action currently will be performed.
1063#
1064sub working_notice ($) {
1065 my ($message) = @_;
1066
1067 &Header::openpage($Lang::tr{'intrusion detection system'}, 1, '');
1068 &Header::openbigbox('100%', 'left', '', $errormessage);
1069 &Header::openbox( 'Waiting', 1,);
1070 print <<END;
1071 <table>
1072 <tr>
1073 <td><img src='/images/indicator.gif' alt='$Lang::tr{'aktiv'}' /></td>
1074 <td>$message</td>
1075 </tr>
1076 </table>
1077END
1078 &Header::closebox();
1079 &Header::closebigbox();
1080 &Header::closepage();
1081}
1082
3983aebd
SS
1083#
1084## A tiny function to perform a reload of the webpage after one second.
1085#
1086sub reload () {
1087 print "<meta http-equiv='refresh' content='1'>\n";
1088
1089 # Stop the script.
1090 exit;
a70d269a
SS
1091}
1092
25f5cb0d
SS
1093#
1094## Private function to read-in and parse rules of a given rulefile.
1095#
1096## The given file will be read, parsed and all valid rules will be stored by ID,
9d18656b 1097## message/description and it's state in the idsrules hash.
25f5cb0d 1098#
3da6e01b
SS
1099sub readrulesfile ($) {
1100 my $rulefile = shift;
1101
1102 # Open rule file and read in contents
298ef5ba 1103 open(RULEFILE, "$IDS::rulespath/$rulefile") or die "Unable to read $rulefile!";
3da6e01b
SS
1104
1105 # Store file content in an array.
1106 my @lines = <RULEFILE>;
1107
1108 # Close file.
1109 close(RULEFILE);
1110
1111 # Loop over rule file contents
1112 foreach my $line (@lines) {
1113 # Remove whitespaces.
1114 chomp $line;
1115
1116 # Skip blank lines.
1117 next if ($line =~ /^\s*$/);
1118
1119 # Local vars.
1120 my $sid;
1121 my $msg;
1122
1123 # Gather rule sid and message from the ruleline.
1124 if ($line =~ m/.*msg:\"(.*?)\"\; .* sid:(.*?); /) {
1125 $msg = $1;
1126 $sid = $2;
1127
1128 # Check if a rule has been found.
1129 if ($sid && $msg) {
9d18656b
SS
1130 # Add rule to the idsrules hash.
1131 $idsrules{$rulefile}{$sid}{'Description'} = $msg;
3da6e01b
SS
1132
1133 # Grab status of the rule. Check if ruleline starts with a "dash".
1134 if ($line =~ /^\#/) {
1135 # If yes, the rule is disabled.
9d18656b 1136 $idsrules{$rulefile}{$sid}{'State'} = "off";
3da6e01b
SS
1137 } else {
1138 # Otherwise the rule is enabled.
9d18656b 1139 $idsrules{$rulefile}{$sid}{'State'} = "on";
3da6e01b
SS
1140 }
1141 }
1142 }
b7e29743 1143 }
3da6e01b 1144}
87660964 1145
8d2f6b0b
SS
1146#
1147## Function to get the used memory of a given process-id.
1148#
87660964 1149sub get_memory_usage($) {
004b13b7 1150 my ($pid) = @_;
87660964 1151
004b13b7 1152 my $memory = 0;
87660964 1153
004b13b7 1154 # Try to open the status file for the given process-id on the pseudo
87660964 1155 # file system proc.
004b13b7
SS
1156 if (open(FILE, "/proc/$pid/status")) {
1157 # Loop through the entire file.
1158 while (<FILE>) {
1159 # Splitt current line content and store them into variables.
1160 my ($key, $value) = split(":", $_, 2);
1161
1162 # Check if the current key is the one which contains the memory usage.
1163 # The wanted one is VmRSS which contains the Real-memory (resident set)
1164 # of the entire process.
1165 if ($key eq "VmRSS") {
1166 # Found the memory usage add it to the memory variable.
1167 $memory += $value;
1168
1169 # Break the loop.
1170 last;
1171 }
1172 }
87660964
SS
1173
1174 # Close file handle.
004b13b7 1175 close(FILE);
87660964
SS
1176
1177 # Return memory usage.
1178 return $memory;
004b13b7 1179 }
87660964
SS
1180
1181 # If the file could not be open, return nothing.
1182 return;
1183}
1184
8d2f6b0b
SS
1185#
1186## Function to generate the file which contains the home net information.
1187#
1188sub generate_home_net_file() {
1189 my %netsettings;
1190
1191 # Read-in network settings.
1192 &General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
1193
1194 # Get available network zones.
1195 my @network_zones = &IDS::get_available_network_zones();
1196
1197 # Temporary array to store network address and prefix of the configured
1198 # networks.
1199 my @networks;
1200
1201 # Loop through the array of available network zones.
1202 foreach my $zone (@network_zones) {
1203 # Skip the red network - It never can be part to the home_net!
1204 next if($zone eq "red");
1205
1206 # Convert current zone name into upper case.
1207 $zone = uc($zone);
1208
1209 # Generate key to access the required data from the netsettings hash.
1210 my $zone_netaddress = $zone . "_NETADDRESS";
1211 my $zone_netmask = $zone . "_NETMASK";
1212
1213 # Obtain the settings from the netsettings hash.
1214 my $netaddress = $netsettings{$zone_netaddress};
1215 my $netmask = $netsettings{$zone_netmask};
1216
1217 # Convert the subnetmask into prefix notation.
1218 my $prefix = &Network::convert_netmask2prefix($netmask);
1219
1220 # Generate full network string.
1221 my $network = join("/", $netaddress,$prefix);
1222
1223 # Check if the network is valid.
1224 if(&Network::check_subnet($network)) {
1225 # Add the generated network to the array of networks.
1226 push(@networks, $network);
1227 }
1228 }
1229
1230 # Format home net declaration.
1231 my $line = "\"\[";
1232
1233 # Loop through the array of networks.
1234 foreach my $network (@networks) {
1235 # Add the network to the line.
1236 $line = "$line" . "$network";
1237
1238 # Check if the current network was the last in the array.
1239 if ($network eq $networks[-1]) {
1240 # Close the line.
1241 $line = "$line" . "\]\"";
1242 } else {
1243 # Add "," for the next network.
1244 $line = "$line" . "\,";
1245 }
1246 }
1247
1248 # Open file to store the addresses of the home net.
1249 open(FILE, ">$idshomenetfile") or die "Could not open $idshomenetfile. $!\n";
1250
1251 # Print yaml header.
1252 print FILE "%YAML 1.1\n";
1253 print FILE "---\n\n";
1254
1255 # Print notice about autogenerated file.
1256 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
1257
1258 # Print the generated and required HOME_NET declaration to the file.
1259 print FILE "HOME_NET:\t$line\n";
1260
1261 # Close file handle.
1262 close(FILE);
1263
1264}
a5d61752 1265
b7e29743
SS
1266#
1267## Function to generate the rules file with whitelisted addresses.
1268#
1269sub GenerateIgnoreFile() {
1270 my %ignored = ();
1271
1272 # SID range 1000000-1999999 Reserved for Local Use
1273 # Put your custom rules in this range to avoid conflicts
1274 my $sid = 1500000;
1275
1276 # Read-in ignoredfile.
1277 &General::readhasharray($ignoredfile, \%ignored);
1278
1279 # Open ignorefile for writing.
1280 open(FILE, ">$whitelistfile") or die "Could not write to $whitelistfile. $!\n";
1281
1282 # Config file header.
1283 print FILE "# Autogenerated file.\n";
1284 print FILE "# All user modifications will be overwritten.\n\n";
1285
1286 # Add all user defined addresses to the whitelist.
1287 #
1288 # Check if the hash contains any elements.
1289 if (keys (%ignored)) {
1290 # Loop through the entire hash and write the host/network
1291 # and remark to the ignore file.
1292 while ( (my $key) = each %ignored) {
1293 my $address = $ignored{$key}[0];
1294 my $remark = $ignored{$key}[1];
1295 my $status = $ignored{$key}[2];
1296
1297 # Check if the status of the entry is "enabled".
1298 if ($status eq "enabled") {
1299 # Check if the address/network is valid.
1300 if ((&General::validip($address)) || (&General::validipandmask($address))) {
1301 # Write rule line to the file to pass any traffic from this IP
1302 print FILE "pass ip $address any -> any any (msg:\"pass all traffic from/to $address\"\; sid:$sid\;)\n";
1303
1304 # Increment sid.
1305 $sid++;
1306 }
1307 }
1308 }
1309 }
1310
1311 close(FILE);
1312}
1313
a5d61752
SS
1314#
1315## Function to read-in the given enabled or disables sids file.
1316#
1317sub read_enabled_disabled_sids_file($) {
1318 my ($file) = @_;
1319
1320 # Temporary hash to store the sids and their state. It will be
1321 # returned at the end of this function.
1322 my %temphash;
1323
1324 # Open the given filename.
1325 open(FILE, "$file") or die "Could not open $file. $!\n";
1326
1327 # Loop through the file.
1328 while(<FILE>) {
1329 # Remove newlines.
1330 chomp $_;
1331
1332 # Skip blank lines.
1333 next if ($_ =~ /^\s*$/);
1334
1335 # Skip coments.
1336 next if ($_ =~ /^\#/);
1337
1338 # Splitt line into sid and state part.
1339 my ($state, $sid) = split(" ", $_);
1340
1341 # Skip line if the sid is not numeric.
1342 next unless ($sid =~ /\d+/ );
1343
1344 # Check if the sid was enabled.
1345 if ($state eq "enablesid") {
1346 # Add the sid and its state as enabled to the temporary hash.
1347 $temphash{$sid} = "enabled";
1348 # Check if the sid was disabled.
1349 } elsif ($state eq "disablesid") {
1350 # Add the sid and its state as disabled to the temporary hash.
1351 $temphash{$sid} = "disabled";
1352 # Invalid state - skip the current sid and state.
1353 } else {
1354 next;
1355 }
1356 }
1357
1358 # Close filehandle.
1359 close(FILE);
1360
1361 # Return the hash.
1362 return %temphash;
1363}