]> git.ipfire.org Git - ipfire-2.x.git/blame - html/cgi-bin/ids.cgi
IDS: Introduce ids-functions.pl.
[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 #
b6f571fa 5# Copyright (C) 2007-2015 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 = ();
0b89daee 35my %netsettings = ();
a232b58c 36my %snortrules = ();
ac1cfefa 37my %snortsettings=();
43263ea6 38my %rulesetsources = ();
298723b9 39my %cgiparams=();
ac1cfefa 40my %checked=();
5a3e0dca 41my %selected=();
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
47# Get netsettings.
ac1cfefa
MT
48&General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
49
43263ea6
SS
50# Get all available ruleset locations.
51&General::readhash("${General::swroot}/snort/ruleset-sources.list", \%rulesetsources);
52
53my $rulestarball = "/var/tmp/snortrules.tar.gz";
54my $snortrulepath = "/etc/snort/rules";
55my $snortusedrulefilesfile = "${General::swroot}/snort/snort-used-rulefiles.conf";
56my $errormessage;
57
58# Hook used to download and update the ruleset,
59# if the cgi got called from command line.
60if ($ENV{"REMOTE_ADDR"} eq "") {
61 # Read snortsettings.
62 &General::readhash("${General::swroot}/snort/settings", \%snortsettings);
63
64 # Download rules tarball.
65 $errormessage = &downloadruleset();
66
67 # Sleep for one second.
68 sleep(1);
69
70 # Check if there was an error message.
71 unless ($errormessage) {
72 # Call oinkmaster.
73 &oinkmaster();
74 } else {
75 # Call logger and log the errormessage.
76 system("logger -t oinkmaster $errormessage");
77 }
78
79exit(0);
80}
81
ac1cfefa
MT
82&Header::showhttpheaders();
83
0b89daee 84# Default settings for snort.
ac1cfefa
MT
85$snortsettings{'ENABLE_SNORT'} = 'off';
86$snortsettings{'ENABLE_SNORT_GREEN'} = 'off';
87$snortsettings{'ENABLE_SNORT_BLUE'} = 'off';
88$snortsettings{'ENABLE_SNORT_ORANGE'} = 'off';
5a3e0dca 89$snortsettings{'RULES'} = '';
ac1cfefa 90$snortsettings{'OINKCODE'} = '';
ac1cfefa 91
298723b9
SS
92#Get GUI values
93&Header::getcgihash(\%cgiparams);
ac1cfefa 94
500c5c55
SS
95# Try to determine if oinkmaster is running.
96my $oinkmaster_pid = `pidof oinkmaster.pl -x`;
97
98# If oinkmaster is running display output.
99if ($oinkmaster_pid) {
100 &working("$Lang::tr{'snort working'}");
101}
102
3da6e01b
SS
103## Grab all available snort rules and store them in the snortrules hash.
104#
422204ff
SS
105# Open snort rules directory and do a directory listing.
106opendir(DIR, $snortrulepath) or die $!;
107 # Loop through the direcory.
108 while (my $file = readdir(DIR)) {
109
110 # We only want files.
111 next unless (-f "$snortrulepath/$file");
112
113 # Ignore empty files.
114 next if (-z "$snortrulepath/$file");
115
3da6e01b 116 # Use a regular expression to find files ending in .rules
422204ff
SS
117 next unless ($file =~ m/\.rules$/);
118
3da6e01b
SS
119 # Ignore files which are not read-able.
120 next unless (-R "$snortrulepath/$file");
395e3b90 121
3da6e01b
SS
122 # Call subfunction to read-in rulefile and add rules to
123 # the snortrules hash.
124 &readrulesfile("$file");
395e3b90 125 }
395e3b90 126
3da6e01b 127closedir(DIR);
395e3b90 128
e5738079
SS
129# Gather used rulefiles.
130#
131# Check if the file for activated rulefiles is not empty.
132if(-f $snortusedrulefilesfile) {
133 # Open the file for used rulefile and read-in content.
134 open(FILE, $snortusedrulefilesfile) or die "Could not open $snortusedrulefilesfile. $!\n";
135
136 # Read-in content.
137 my @lines = <FILE>;
138
139 # Close file.
140 close(FILE);
141
142 # Loop through the array.
143 foreach my $line (@lines) {
144 # Remove newlines.
145 chomp($line);
146
147 # Skip comments.
148 next if ($line =~ /\#/);
149
150 # Skip blank lines.
151 next if ($line =~ /^\s*$/);
152
153 # Gather rule sid and message from the ruleline.
154 if ($line =~ /.*include \$RULE_PATH\/(.*)/) {
155 my $rulefile = $1;
156
157 # Add the rulefile to the %snortrules hash.
158 $snortrules{$rulefile}{'Rulefile'}{'State'} = "on";
159 }
160 }
161}
162
298723b9
SS
163# Save ruleset.
164if ($cgiparams{'RULESET'} eq $Lang::tr{'update'}) {
165 my $enabled_sids_file = "${General::swroot}/snort/oinkmaster-enabled-sids.conf";
166 my $disabled_sids_file = "${General::swroot}/snort/oinkmaster-disabled-sids.conf";
167
168 # Arrays to store sid which should be added to the corresponding files.
169 my @enabled_sids;
170 my @disabled_sids;
e5738079 171 my @enabled_rulefiles;
298723b9
SS
172
173 # Loop through the hash of snortrules.
174 foreach my $rulefile(keys %snortrules) {
e5738079
SS
175 # Check if the rulefile is enabled.
176 if ($cgiparams{$rulefile} eq "on") {
177 # Add rulefile to the array of enabled rulefiles.
178 push(@enabled_rulefiles, $rulefile);
b65b5ef3
SS
179
180 # Drop item from cgiparams hash.
181 delete $cgiparams{$rulefile};
e5738079 182 }
466c6779 183 }
e5738079 184
466c6779
SS
185 # Loop through the hash of snortrules.
186 foreach my $rulefile (keys %snortrules) {
298723b9
SS
187 # Loop through the single rules of the rulefile.
188 foreach my $sid (keys %{$snortrules{$rulefile}}) {
c51a044a
SS
189 # Skip the current sid if it is not numeric.
190 next unless ($sid =~ /\d+/ );
191
298723b9
SS
192 # Check if there exists a key in the cgiparams hash for this sid.
193 if (exists($cgiparams{$sid})) {
194 # Look if the rule is disabled.
195 if ($snortrules{$rulefile}{$sid}{'State'} eq "off") {
196 # Check if the state has been set to 'on'.
197 if ($cgiparams{$sid} eq "on") {
198 # Add the sid to the enabled_sids array.
199 push(@enabled_sids, $sid);
200
201 # Drop item from cgiparams hash.
60333473 202 delete $cgiparams{$rulefile}{$sid};
298723b9
SS
203 }
204 }
205 } else {
206 # Look if the rule is enabled.
207 if ($snortrules{$rulefile}{$sid}{'State'} eq "on") {
208 # Check if the state is 'on' and should be disabled.
209 # In this case there is no entry
210 # for the sid in the cgiparams hash.
211 # Add it to the disabled_sids array.
212 push(@disabled_sids, $sid);
213
214 # Drop item from cgiparams hash.
60333473 215 delete $cgiparams{$rulefile}{$sid};
298723b9
SS
216 }
217 }
218 }
219 }
220
37659505
SS
221 # Open enabled sid's file for writing.
222 open(FILE, ">$enabled_sids_file") or die "Could not write to $enabled_sids_file. $!\n";
298723b9 223
37659505
SS
224 # Write header to file.
225 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
298723b9 226
37659505
SS
227 # Check if the enabled_sids array contains any sid's.
228 if (@enabled_sids) {
298723b9
SS
229 # Loop through the array of enabled sids and write them to the file.
230 foreach my $sid (@enabled_sids) {
37659505 231 print FILE "enablesid $sid\n";
298723b9 232 }
298723b9
SS
233 }
234
37659505
SS
235 # Close file after writing.
236 close(FILE);
237
238 # Open disabled sid's file for writing.
239 open(FILE, ">$disabled_sids_file") or die "Could not write to $disabled_sids_file. $!\n";
298723b9 240
37659505
SS
241 # Write header to file.
242 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
298723b9 243
37659505
SS
244 # Check if the enabled_sids array contains any sid's.
245 if (@disabled_sids) {
246 # Loop through the array of disabled sids and write them to the file.
247 foreach my $sid (@disabled_sids) {
248 print FILE "disablesid $sid\n";
249 }
250 }
298723b9 251
37659505
SS
252 # Close file after writing.
253 close(FILE);
e5738079
SS
254
255 # Open file for used rulefiles.
37659505 256 open (FILE, ">$snortusedrulefilesfile") or die "Could not write to $snortusedrulefilesfile. $!\n";
e5738079
SS
257
258 # Write header to file.
259 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
260
261 # Check if the enabled_rulefiles array contains any entries.
262 if (@enabled_rulefiles) {
263 # Loop through the array of rulefiles which should be loaded and write the to the file.
264 foreach my $file (@enabled_rulefiles) {
265 print FILE "include \$RULE_PATH/$file\n";
266 }
267 }
268
269 # Close file after writing.
270 close(FILE);
52599865
SS
271
272 # Call oinkmaster to alter the ruleset.
273 &oinkmaster();
274
275# Download new ruleset.
276} elsif ($cgiparams{'RULESET'} eq $Lang::tr{'download new ruleset'}) {
43263ea6
SS
277 # Check if the red device is active.
278 unless (-e "${General::swroot}/red/active") {
279 $errormessage = $Lang::tr{'could not download latest updates'};
280 }
52599865
SS
281
282 # Call diskfree to gather the free disk space of /var.
283 my @df = `/bin/df -B M /var`;
284
285 # Loop through the output.
286 foreach my $line (@df) {
287 # Ignore header line.
288 next if $line =~ m/^Filesystem/;
289
290 # Search for a line with the device information.
291 if ($line =~ m/dev/ ) {
292 # Split the line into single pieces.
293 my @values = split(' ', $line);
294 my ($filesystem, $blocks, $used, $available, $used_perenctage, $mounted_on) = @values;
295
296 # Check if the available disk space is more than 300MB.
297 if ($available < 300) {
298 # If there is not enough space, print out an error message.
299 $errormessage = "$Lang::tr{'not enough disk space'} < 300MB, /var $1MB";
52599865 300
43263ea6
SS
301 # Break loop.
302 last;
52599865 303 }
43263ea6
SS
304 }
305 }
52599865 306
43263ea6
SS
307 # Check if any errors happend.
308 unless ($errormessage) {
309 # Call subfunction to download the ruleset.
310 $errormessage = &downloadruleset();
311 }
8f22237b 312
43263ea6
SS
313 # Sleep for 1 second
314 sleep(1);
52599865 315
43263ea6
SS
316 # Check if the downloader returend any error message.
317 unless ($errormessage) {
318 # Call subfunction to launch oinkmaster.
319 &oinkmaster();
320
321 # Sleep for 1 seconds.
322 sleep(1);
52599865 323 }
a232b58c
SS
324# Save snort settings.
325} elsif ($cgiparams{'SNORT'} eq $Lang::tr{'save'}) {
326 # Prevent form name from been stored in conf file.
327 delete $cgiparams{'SNORT'};
328
329 # Check if an oinkcode has been provided.
330 if ($cgiparams{'OINKCODE'}) {
331 # Check if the oinkcode contains unallowed chars.
332 unless ($cgiparams{'OINKCODE'} =~ /^[a-z0-9]+$/) {
333 $errormessage = $Lang::tr{'invalid input for oink code'};
334 }
f9c2147d 335 }
ac1cfefa 336
a232b58c
SS
337 # Go on if there are no error messages.
338 if (!$errormessage) {
339 # Store settings into settings file.
340 &General::writehash("${General::swroot}/snort/settings", \%cgiparams);
341
a232b58c 342 # Call snortctrl to restart snort
a9a91e5f
MT
343 system('/usr/local/bin/snortctrl restart >/dev/null');
344 }
ac1cfefa
MT
345}
346
52599865
SS
347# Read-in snortsettings
348&General::readhash("${General::swroot}/snort/settings", \%snortsettings);
349
ac1cfefa
MT
350$checked{'ENABLE_SNORT'}{'off'} = '';
351$checked{'ENABLE_SNORT'}{'on'} = '';
352$checked{'ENABLE_SNORT'}{$snortsettings{'ENABLE_SNORT'}} = "checked='checked'";
353$checked{'ENABLE_SNORT_GREEN'}{'off'} = '';
354$checked{'ENABLE_SNORT_GREEN'}{'on'} = '';
355$checked{'ENABLE_SNORT_GREEN'}{$snortsettings{'ENABLE_SNORT_GREEN'}} = "checked='checked'";
356$checked{'ENABLE_SNORT_BLUE'}{'off'} = '';
357$checked{'ENABLE_SNORT_BLUE'}{'on'} = '';
358$checked{'ENABLE_SNORT_BLUE'}{$snortsettings{'ENABLE_SNORT_BLUE'}} = "checked='checked'";
359$checked{'ENABLE_SNORT_ORANGE'}{'off'} = '';
360$checked{'ENABLE_SNORT_ORANGE'}{'on'} = '';
361$checked{'ENABLE_SNORT_ORANGE'}{$snortsettings{'ENABLE_SNORT_ORANGE'}} = "checked='checked'";
5a3e0dca 362$selected{'RULES'}{'nothing'} = '';
5a3e0dca 363$selected{'RULES'}{'community'} = '';
a0fa489f 364$selected{'RULES'}{'emerging'} = '';
5a3e0dca
MT
365$selected{'RULES'}{'registered'} = '';
366$selected{'RULES'}{'subscripted'} = '';
367$selected{'RULES'}{$snortsettings{'RULES'}} = "selected='selected'";
ac1cfefa
MT
368
369&Header::openpage($Lang::tr{'intrusion detection system'}, 1, '');
370
17726644
SS
371### Java Script ###
372print <<END
373<script>
374 // Tiny java script function to show/hide the rules
375 // of a given category.
376 function showhide(tblname) {
377 \$("#" + tblname).toggle();
378 }
379</script>
380END
381;
382
ac1cfefa
MT
383&Header::openbigbox('100%', 'left', '', $errormessage);
384
385if ($errormessage) {
386 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
387 print "<class name='base'>$errormessage\n";
388 print "&nbsp;</class>\n";
389 &Header::closebox();
390}
391
7cc8a0e5 392&Header::openbox('100%', 'left', $Lang::tr{'intrusion detection system'});
1504a375
SS
393
394my $rulesdate;
395
396# Check if a ruleset allready has been downloaded.
397if ( -f "$rulestarball"){
398 # Call stat on the filename to obtain detailed information.
399 my @Info = stat("$rulestarball");
400
401 # Grab details about the creation time.
402 $rulesdate = localtime($Info[9]);
403}
404
ac1cfefa 405print <<END
1504a375
SS
406<form method='post' action='$ENV{'SCRIPT_NAME'}'>
407 <table width='100%' border='0'>
408 <tr>
409 <td class='base' width='25%'>
410 <input type='checkbox' name='ENABLE_SNORT' $checked{'ENABLE_SNORT'}{'on'}>RED Snort
411 </td>
412
413 <td class='base' width='25%'>
414 <input type='checkbox' name='ENABLE_SNORT_GREEN' $checked{'ENABLE_SNORT_GREEN'}{'on'}>GREEN Snort
415 </td>
416
417 <td class='base' width='25%'>
ac1cfefa
MT
418END
419;
1504a375
SS
420
421# Check if a blue device is configured.
422if ($netsettings{'BLUE_DEV'}) {
423 print "<input type='checkbox' name='ENABLE_SNORT_BLUE' $checked{'ENABLE_SNORT_BLUE'}{'on'} />BLUE Snort\n";
ac1cfefa 424}
1504a375
SS
425
426print "</td>\n";
427
428print "<td width='25%'>\n";
429
430# Check if an orange device is configured.
431if ($netsettings{'ORANGE_DEV'}) {
432 print "<input type='checkbox' name='ENABLE_SNORT_ORANGE' $checked{'ENABLE_SNORT_ORANGE'}{'on'} />ORANGE Snort\n";
ac1cfefa 433}
1b73b07e 434
ac1cfefa 435print <<END
1504a375
SS
436 </td>
437 </tr>
438
439 <tr>
440 <td colspan='4'><br><br></td>
441 </tr>
442
443 <tr>
444 <td colspan='4'><b>$Lang::tr{'ids rules update'}</b></td>
445 </tr>
446
447 <tr>
448 <td colspan='4'><select name='RULES'>
5a3e0dca 449 <option value='nothing' $selected{'RULES'}{'nothing'} >$Lang::tr{'no'}</option>
a0fa489f 450 <option value='emerging' $selected{'RULES'}{'emerging'} >$Lang::tr{'emerging rules'}</option>
5a3e0dca
MT
451 <option value='community' $selected{'RULES'}{'community'} >$Lang::tr{'community rules'}</option>
452 <option value='registered' $selected{'RULES'}{'registered'} >$Lang::tr{'registered user rules'}</option>
453 <option value='subscripted' $selected{'RULES'}{'subscripted'} >$Lang::tr{'subscripted user rules'}</option>
454 </select>
1504a375
SS
455 </td>
456 </tr>
457
458 <tr>
459 <td colspan='4'>
460 <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>
461 <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>
462 </td>
463 </tr>
464
465 <tr>
466 <td colspan='4' nowrap='nowrap'>Oinkcode:&nbsp;<input type='text' size='40' name='OINKCODE' value='$snortsettings{'OINKCODE'}'></td>
467 </tr>
468
469 <tr>
470 <td colspan='4' align='left'><br>
471 <input type='submit' name='RULESET' value='$Lang::tr{'download new ruleset'}'>&nbsp;$Lang::tr{'updates installed'}: $rulesdate
472 </td>
473
474 </tr>
475 </table>
476
477 <br><br>
478
479 <table width='100%'>
480 <tr>
481 <td align='right'><input type='submit' name='SNORT' value='$Lang::tr{'save'}' /></td>
482 </tr>
483 </table>
ac1cfefa
MT
484</form>
485END
486;
487
ac1cfefa 488&Header::closebox();
fbfdb241 489
f7fcd1c0 490&Header::openbox('100%', 'LEFT', $Lang::tr{'intrusion detection system rules'});
298723b9
SS
491 print"<form method='POST' action='$ENV{'SCRIPT_NAME'}'>\n";
492
f7fcd1c0 493 # Output display table for rule files
17726644 494 print "<table width='100%'>\n";
ce0e83b3 495
17726644
SS
496 # Local variable required for java script to show/hide
497 # rules of a rulefile.
498 my $rulesetcount = 1;
f7fcd1c0
SS
499
500 # Loop over each rule file
501 foreach my $rulefile (sort keys(%snortrules)) {
502 my $rulechecked = '';
503
f7fcd1c0 504 # Check if rule file is enabled
e5738079 505 if ($snortrules{$rulefile}{'Rulefile'}{'State'} eq 'on') {
f7fcd1c0
SS
506 $rulechecked = 'CHECKED';
507 }
3ffee04b 508
17726644
SS
509 # Table and rows for the rule files.
510 print"<tr>\n";
511 print"<td class='base' width='5%'>\n";
e5738079 512 print"<input type='checkbox' name='$rulefile' $rulechecked>\n";
17726644
SS
513 print"</td>\n";
514 print"<td class='base' width='90%'><b>$rulefile</b></td>\n";
515 print"<td class='base' width='5%' align='right'>\n";
516 print"<a href=\"javascript:showhide('ruleset$rulesetcount')\">SHOW</a>\n";
517 print"</td>\n";
518 print"</tr>\n";
519
520 # Rows which will be hidden per default and will contain the single rules.
521 print"<tr style='display:none' id='ruleset$rulesetcount'>\n";
522 print"<td colspan='3'>\n";
523
524 # Local vars
525 my $lines;
526 my $rows;
527 my $col;
528
529 # New table for the single rules.
530 print "<table width='100%'>\n";
531
532 # Loop over rule file rules
533 foreach my $sid (sort {$a <=> $b} keys(%{$snortrules{$rulefile}})) {
f7fcd1c0 534 # Local vars
17726644 535 my $ruledefchecked = '';
f9c2147d 536
e5738079
SS
537 # Skip rulefile itself.
538 next if ($sid eq "Rulefile");
539
17726644
SS
540 # If 2 rules have been displayed, start a new row
541 if (($lines % 2) == 0) {
542 print "</tr><tr>\n";
3ffee04b 543
17726644
SS
544 # Increase rows by once.
545 $rows++;
546 }
f7fcd1c0 547
17726644
SS
548 # Colour lines.
549 if ($rows % 2) {
550 $col="bgcolor='$color{'color20'}'";
551 } else {
552 $col="bgcolor='$color{'color22'}'";
f7fcd1c0
SS
553 }
554
17726644 555 # Set rule state
298723b9 556 if ($snortrules{$rulefile}{$sid}{'State'} eq 'on') {
17726644 557 $ruledefchecked = 'CHECKED';
f7fcd1c0 558 }
3ffee04b 559
17726644
SS
560 # Create rule checkbox and display rule description
561 print "<td class='base' width='5%' align='right' $col>\n";
562 print "<input type='checkbox' NAME='$sid' $ruledefchecked>\n";
563 print "</td>\n";
564 print "<td class='base' width='45%' $col>$snortrules{$rulefile}{$sid}{'Description'}</td>";
565
566 # Increment rule count
567 $lines++;
568 }
569
570 # If do not have a second rule for row, create empty cell
571 if (($lines % 2) != 0) {
572 print "<td class='base'></td>";
f7fcd1c0
SS
573 }
574
575 # Close display table
17726644 576 print "</tr></table></td></tr>";
3ffee04b 577
17726644
SS
578 # Finished whith the rule file, increase count.
579 $rulesetcount++;
f7fcd1c0 580 }
17726644
SS
581
582 # Close display table
583 print "</table>";
584
f7fcd1c0 585print <<END
2999f1d2
CS
586<table width='100%'>
587<tr>
298723b9 588 <td width='100%' align='right'><input type='submit' name='RULESET' value='$Lang::tr{'update'}'>
3ffee04b
CS
589 &nbsp; <!-- space for future online help link -->
590 </td>
2999f1d2
CS
591</tr>
592</table>
298723b9 593</form>
3ffee04b
CS
594END
595;
f7fcd1c0 596&Header::closebox();
ac1cfefa
MT
597&Header::closebigbox();
598&Header::closepage();
599
500c5c55
SS
600sub working ($) {
601 my $message = $_[0];
602
603 &Header::openpage($Lang::tr{'intrusion detection system'}, 1, '');
604 &Header::openbigbox('100%', 'left', '', $errormessage);
605 &Header::openbox( 'Waiting', 1, "<meta http-equiv='refresh' content='1'>" );
606 print <<END;
607 <table>
608 <tr>
609 <td><img src='/images/indicator.gif' alt='$Lang::tr{'aktiv'}' /></td>
610 <td>$message</td>
611 </tr>
612 <tr>
613 <td colspan='2' align='center'>
614 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
615 <input type='image' alt='$Lang::tr{'reload'}' title='$Lang::tr{'reload'}' src='/images/view-refresh.png' />
616 </form>
617 </tr>
618 </table>
619END
620 &Header::closebox();
621 &Header::closebigbox();
622 &Header::closepage();
623 exit;
a70d269a
SS
624}
625
43263ea6
SS
626sub downloadruleset {
627 # Read proxysettings.
628 my %proxysettings=();
629 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
630
631 # Load required perl module to handle the download.
632 use LWP::UserAgent;
ac1cfefa 633
43263ea6
SS
634 # Init the download module.
635 my $downloader = LWP::UserAgent->new;
ac1cfefa 636
43263ea6
SS
637 # Set timeout to 10 seconds.
638 $downloader->timeout(10);
ac1cfefa 639
43263ea6
SS
640 # Check if an upstream proxy is configured.
641 if ($proxysettings{'UPSTREAM_PROXY'}) {
642 my ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?)?$/);
643 my $proxy_url;
afe26a05 644
43263ea6
SS
645 # Check if we got a peer.
646 if ($peer) {
647 $proxy_url = "http://";
648
649 # Check if the proxy requires authentication.
650 if (($proxysettings{'UPSTREAM_USER'}) && ($proxysettings{'UPSTREAM_PASSWORD'})) {
651 $proxy_url .= "$proxysettings{'UPSTREAM_USER'}\:$proxysettings{'UPSTREAM_PASSWORD'}\@";
652 }
653
654 # Add proxy server address and port.
655 $proxy_url .= "$peer\:$peerport";
656 } else {
657 # Break and return error message.
658 return "$Lang::tr{'could not download latest updates'}";
659 }
660
661 # Setup proxy settings.
662 $downloader->proxy('http', $proxy_url);
663 }
afe26a05
SS
664
665 # Grab the right url based on the configured vendor.
43263ea6 666 my $url = $rulesetsources{$snortsettings{'RULES'}};
afe26a05 667
43263ea6
SS
668 # Check if the vendor requires an oinkcode and add it if needed.
669 $url =~ s/\<oinkcode\>/$snortsettings{'OINKCODE'}/g;
afe26a05
SS
670
671 # Abort if no url could be determined for the vendor.
43263ea6
SS
672 unless ($url) {
673 # Abort and return errormessage.
674 return "$Lang::tr{'could not download latest updates'}";
afe26a05
SS
675 }
676
43263ea6
SS
677 # Pass the requested url to the downloader.
678 my $request = HTTP::Request->new(GET => $url);
ac1cfefa 679
43263ea6
SS
680 # Perform the request and save the output into the "$rulestarball" file.
681 my $response = $downloader->request($request, $rulestarball);
ac1cfefa 682
43263ea6
SS
683 # Check if there was any error.
684 unless ($response->is_success) {
685 return "$response->status_line";
ac1cfefa 686 }
43263ea6
SS
687
688 # If we got here, everything worked fine. Return nothing.
689 return;
ac1cfefa 690}
3da6e01b 691
56dacb58
SS
692sub oinkmaster () {
693 # Call oinkmaster to generate ruleset.
a6edfcbd 694 system("/usr/local/bin/oinkmaster.pl -v -s -u file://$rulestarball -C /var/ipfire/snort/oinkmaster.conf -o /etc/snort/rules 2>&1 |logger -t oinkmaster");
56dacb58
SS
695}
696
3da6e01b
SS
697sub readrulesfile ($) {
698 my $rulefile = shift;
699
700 # Open rule file and read in contents
701 open(RULEFILE, "$snortrulepath/$rulefile") or die "Unable to read $rulefile!";
702
703 # Store file content in an array.
704 my @lines = <RULEFILE>;
705
706 # Close file.
707 close(RULEFILE);
708
709 # Loop over rule file contents
710 foreach my $line (@lines) {
711 # Remove whitespaces.
712 chomp $line;
713
714 # Skip blank lines.
715 next if ($line =~ /^\s*$/);
716
717 # Local vars.
718 my $sid;
719 my $msg;
720
721 # Gather rule sid and message from the ruleline.
722 if ($line =~ m/.*msg:\"(.*?)\"\; .* sid:(.*?); /) {
723 $msg = $1;
724 $sid = $2;
725
726 # Check if a rule has been found.
727 if ($sid && $msg) {
728 # Add rule to the snortrules hash.
729 $snortrules{$rulefile}{$sid}{'Description'} = $msg;
730
731 # Grab status of the rule. Check if ruleline starts with a "dash".
732 if ($line =~ /^\#/) {
733 # If yes, the rule is disabled.
298723b9 734 $snortrules{$rulefile}{$sid}{'State'} = "off";
3da6e01b
SS
735 } else {
736 # Otherwise the rule is enabled.
298723b9 737 $snortrules{$rulefile}{$sid}{'State'} = "on";
3da6e01b
SS
738 }
739 }
740 }
741 }
742}