]> git.ipfire.org Git - ipfire-2.x.git/blob - html/cgi-bin/ids.cgi
ids.cgi: Add check when altering the ruleset
[ipfire-2.x.git] / html / cgi-bin / ids.cgi
1 #!/usr/bin/perl
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2007-2015 IPFire Team <info@ipfire.org> #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21
22 use strict;
23
24 # enable only the following on debugging purpose
25 #use warnings;
26 #use CGI::Carp 'fatalsToBrowser';
27 use File::Copy;
28
29 require '/var/ipfire/general-functions.pl';
30 require "${General::swroot}/lang.pl";
31 require "${General::swroot}/header.pl";
32
33 my %color = ();
34 my %mainsettings = ();
35 my %netsettings = ();
36 my %snortsettings=();
37 my %cgiparams=();
38 my %checked=();
39 my %selected=();
40
41 # Read-in main settings, for language, theme and colors.
42 &General::readhash("${General::swroot}/main/settings", \%mainsettings);
43 &General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
44
45 # Get netsettings.
46 &General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
47
48 &Header::showhttpheaders();
49
50 # Default settings for snort.
51 $snortsettings{'ENABLE_SNORT'} = 'off';
52 $snortsettings{'ENABLE_SNORT_GREEN'} = 'off';
53 $snortsettings{'ENABLE_SNORT_BLUE'} = 'off';
54 $snortsettings{'ENABLE_SNORT_ORANGE'} = 'off';
55 $snortsettings{'ACTION'} = '';
56 $snortsettings{'RULES'} = '';
57 $snortsettings{'OINKCODE'} = '';
58 $snortsettings{'INSTALLDATE'} = '';
59
60 #Get GUI values
61 &Header::getcgihash(\%cgiparams);
62
63 my $snortrulepath = "/etc/snort/rules";
64 my $snortusedrulefilesfile = "${General::swroot}/snort/snort-used-rulefiles.conf";
65 my $restartsnortrequired = 0;
66 my %snortrules;
67 my $errormessage;
68 my $url;
69
70 ## Grab all available snort rules and store them in the snortrules hash.
71 #
72 # Open snort rules directory and do a directory listing.
73 opendir(DIR, $snortrulepath) or die $!;
74 # Loop through the direcory.
75 while (my $file = readdir(DIR)) {
76
77 # We only want files.
78 next unless (-f "$snortrulepath/$file");
79
80 # Ignore empty files.
81 next if (-z "$snortrulepath/$file");
82
83 # Use a regular expression to find files ending in .rules
84 next unless ($file =~ m/\.rules$/);
85
86 # Ignore files which are not read-able.
87 next unless (-R "$snortrulepath/$file");
88
89 # Call subfunction to read-in rulefile and add rules to
90 # the snortrules hash.
91 &readrulesfile("$file");
92 }
93
94 closedir(DIR);
95
96 # Gather used rulefiles.
97 #
98 # Check if the file for activated rulefiles is not empty.
99 if(-f $snortusedrulefilesfile) {
100 # Open the file for used rulefile and read-in content.
101 open(FILE, $snortusedrulefilesfile) or die "Could not open $snortusedrulefilesfile. $!\n";
102
103 # Read-in content.
104 my @lines = <FILE>;
105
106 # Close file.
107 close(FILE);
108
109 # Loop through the array.
110 foreach my $line (@lines) {
111 # Remove newlines.
112 chomp($line);
113
114 # Skip comments.
115 next if ($line =~ /\#/);
116
117 # Skip blank lines.
118 next if ($line =~ /^\s*$/);
119
120 # Gather rule sid and message from the ruleline.
121 if ($line =~ /.*include \$RULE_PATH\/(.*)/) {
122 my $rulefile = $1;
123
124 # Add the rulefile to the %snortrules hash.
125 $snortrules{$rulefile}{'Rulefile'}{'State'} = "on";
126 }
127 }
128 }
129
130 # Save ruleset.
131 if ($cgiparams{'RULESET'} eq $Lang::tr{'update'}) {
132 my $enabled_sids_file = "${General::swroot}/snort/oinkmaster-enabled-sids.conf";
133 my $disabled_sids_file = "${General::swroot}/snort/oinkmaster-disabled-sids.conf";
134
135 # Arrays to store sid which should be added to the corresponding files.
136 my @enabled_sids;
137 my @disabled_sids;
138 my @enabled_rulefiles;
139
140 # Loop through the hash of snortrules.
141 foreach my $rulefile(keys %snortrules) {
142 # Check if the rulefile is enabled.
143 if ($cgiparams{$rulefile} eq "on") {
144 # Add rulefile to the array of enabled rulefiles.
145 push(@enabled_rulefiles, $rulefile);
146
147 # Drop item from cgiparams hash.
148 delete $cgiparams{$rulefile};
149 }
150 }
151
152 # Loop through the hash of snortrules.
153 foreach my $rulefile (keys %snortrules) {
154 # Loop through the single rules of the rulefile.
155 foreach my $sid (keys %{$snortrules{$rulefile}}) {
156 # Skip the current sid if it is not numeric.
157 next unless ($sid =~ /\d+/ );
158
159 # Check if there exists a key in the cgiparams hash for this sid.
160 if (exists($cgiparams{$sid})) {
161 # Look if the rule is disabled.
162 if ($snortrules{$rulefile}{$sid}{'State'} eq "off") {
163 # Check if the state has been set to 'on'.
164 if ($cgiparams{$sid} eq "on") {
165 # Add the sid to the enabled_sids array.
166 push(@enabled_sids, $sid);
167
168 # Drop item from cgiparams hash.
169 delete $cgiparams{$rulefile}{$sid};
170 }
171 }
172 } else {
173 # Look if the rule is enabled.
174 if ($snortrules{$rulefile}{$sid}{'State'} eq "on") {
175 # Check if the state is 'on' and should be disabled.
176 # In this case there is no entry
177 # for the sid in the cgiparams hash.
178 # Add it to the disabled_sids array.
179 push(@disabled_sids, $sid);
180
181 # Drop item from cgiparams hash.
182 delete $cgiparams{$rulefile}{$sid};
183 }
184 }
185 }
186 }
187
188 # Open enabled sid's file for writing.
189 open(FILE, ">$enabled_sids_file") or die "Could not write to $enabled_sids_file. $!\n";
190
191 # Write header to file.
192 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
193
194 # Check if the enabled_sids array contains any sid's.
195 if (@enabled_sids) {
196 # Loop through the array of enabled sids and write them to the file.
197 foreach my $sid (@enabled_sids) {
198 print FILE "enablesid $sid\n";
199 }
200 }
201
202 # Close file after writing.
203 close(FILE);
204
205 # Open disabled sid's file for writing.
206 open(FILE, ">$disabled_sids_file") or die "Could not write to $disabled_sids_file. $!\n";
207
208 # Write header to file.
209 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
210
211 # Check if the enabled_sids array contains any sid's.
212 if (@disabled_sids) {
213 # Loop through the array of disabled sids and write them to the file.
214 foreach my $sid (@disabled_sids) {
215 print FILE "disablesid $sid\n";
216 }
217 }
218
219 # Close file after writing.
220 close(FILE);
221
222 # Open file for used rulefiles.
223 open (FILE, ">$snortusedrulefilesfile") or die "Could not write to $snortusedrulefilesfile. $!\n";
224
225 # Write header to file.
226 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
227
228 # Check if the enabled_rulefiles array contains any entries.
229 if (@enabled_rulefiles) {
230 # Loop through the array of rulefiles which should be loaded and write the to the file.
231 foreach my $file (@enabled_rulefiles) {
232 print FILE "include \$RULE_PATH/$file\n";
233 }
234 }
235
236 # Close file after writing.
237 close(FILE);
238
239 # Call oinkmaster to alter the ruleset.
240 &oinkmaster();
241
242 # Download new ruleset.
243 } elsif ($cgiparams{'RULESET'} eq $Lang::tr{'download new ruleset'}) {
244 # Local var.
245 my $return;
246
247 # Call diskfree to gather the free disk space of /var.
248 my @df = `/bin/df -B M /var`;
249
250 # Loop through the output.
251 foreach my $line (@df) {
252 # Ignore header line.
253 next if $line =~ m/^Filesystem/;
254
255 # Search for a line with the device information.
256 if ($line =~ m/dev/ ) {
257 # Split the line into single pieces.
258 my @values = split(' ', $line);
259 my ($filesystem, $blocks, $used, $available, $used_perenctage, $mounted_on) = @values;
260
261 # Check if the available disk space is more than 300MB.
262 if ($available < 300) {
263 # If there is not enough space, print out an error message.
264 $errormessage = "$Lang::tr{'not enough disk space'} < 300MB, /var $1MB";
265 } else {
266 # Call subfunction to download the ruleset.
267 &downloadrulesfile();
268
269 # Sleep for 3 seconds.
270 sleep(3);
271
272 # Gather return of the external wget.
273 $return = `cat /var/tmp/log 2>/dev/null`;
274 }
275
276 # Check if there was an error.
277 if ($return =~ "ERROR") {
278 # Store error message for display.
279 $errormessage = "<br /><pre>".$return."</pre>";
280 } else {
281 # Call subfunction to launch oinkmaster.
282 &oinkmaster();
283
284 # Sleep for 2 seconds.
285 sleep(2);
286 }
287 }
288 }
289 }
290
291
292 if ($snortsettings{'OINKCODE'} ne "") {
293 $errormessage = $Lang::tr{'invalid input for oink code'} unless ($snortsettings{'OINKCODE'} =~ /^[a-z0-9]+$/);
294 }
295
296 if (!$errormessage) {
297 if ($snortsettings{'RULES'} eq 'subscripted') {
298 $url=" https://www.snort.org/rules/snortrules-snapshot-29111.tar.gz?oinkcode=$snortsettings{'OINKCODE'}";
299 } elsif ($snortsettings{'RULES'} eq 'registered') {
300 $url=" https://www.snort.org/rules/snortrules-snapshot-29111.tar.gz?oinkcode=$snortsettings{'OINKCODE'}";
301 } elsif ($snortsettings{'RULES'} eq 'community') {
302 $url=" https://www.snort.org/rules/community";
303 } else {
304 $url="http://rules.emergingthreats.net/open/snort-2.9.0/emerging.rules.tar.gz";
305 }
306
307 if ($snortsettings{'ACTION'} eq $Lang::tr{'save'} && $snortsettings{'ACTION2'} eq "snort" ) {
308 &General::writehash("${General::swroot}/snort/settings", \%snortsettings);
309 if ($snortsettings{'ENABLE_SNORT'} eq 'on')
310 {
311 system ('/usr/bin/touch', "${General::swroot}/snort/enable");
312 } else {
313 unlink "${General::swroot}/snort/enable";
314 }
315 if ($snortsettings{'ENABLE_SNORT_GREEN'} eq 'on')
316 {
317 system ('/usr/bin/touch', "${General::swroot}/snort/enable_green");
318 } else {
319 unlink "${General::swroot}/snort/enable_green";
320 }
321 if ($snortsettings{'ENABLE_SNORT_BLUE'} eq 'on')
322 {
323 system ('/usr/bin/touch', "${General::swroot}/snort/enable_blue");
324 } else {
325 unlink "${General::swroot}/snort/enable_blue";
326 }
327 if ($snortsettings{'ENABLE_SNORT_ORANGE'} eq 'on')
328 {
329 system ('/usr/bin/touch', "${General::swroot}/snort/enable_orange");
330 } else {
331 unlink "${General::swroot}/snort/enable_orange";
332 }
333 if ($snortsettings{'ENABLE_PREPROCESSOR_HTTP_INSPECT'} eq 'on')
334 {
335 system ('/usr/bin/touch', "${General::swroot}/snort/enable_preprocessor_http_inspect");
336 } else {
337 unlink "${General::swroot}/snort/enable_preprocessor_http_inspect";
338 }
339
340 system('/usr/local/bin/snortctrl restart >/dev/null');
341 }
342 }
343
344 # Read-in snortsettings
345 &General::readhash("${General::swroot}/snort/settings", \%snortsettings);
346
347 $checked{'ENABLE_SNORT'}{'off'} = '';
348 $checked{'ENABLE_SNORT'}{'on'} = '';
349 $checked{'ENABLE_SNORT'}{$snortsettings{'ENABLE_SNORT'}} = "checked='checked'";
350 $checked{'ENABLE_SNORT_GREEN'}{'off'} = '';
351 $checked{'ENABLE_SNORT_GREEN'}{'on'} = '';
352 $checked{'ENABLE_SNORT_GREEN'}{$snortsettings{'ENABLE_SNORT_GREEN'}} = "checked='checked'";
353 $checked{'ENABLE_SNORT_BLUE'}{'off'} = '';
354 $checked{'ENABLE_SNORT_BLUE'}{'on'} = '';
355 $checked{'ENABLE_SNORT_BLUE'}{$snortsettings{'ENABLE_SNORT_BLUE'}} = "checked='checked'";
356 $checked{'ENABLE_SNORT_ORANGE'}{'off'} = '';
357 $checked{'ENABLE_SNORT_ORANGE'}{'on'} = '';
358 $checked{'ENABLE_SNORT_ORANGE'}{$snortsettings{'ENABLE_SNORT_ORANGE'}} = "checked='checked'";
359 $selected{'RULES'}{'nothing'} = '';
360 $selected{'RULES'}{'community'} = '';
361 $selected{'RULES'}{'emerging'} = '';
362 $selected{'RULES'}{'registered'} = '';
363 $selected{'RULES'}{'subscripted'} = '';
364 $selected{'RULES'}{$snortsettings{'RULES'}} = "selected='selected'";
365
366 &Header::openpage($Lang::tr{'intrusion detection system'}, 1, '');
367
368 ### Java Script ###
369 print <<END
370 <script>
371 // Tiny java script function to show/hide the rules
372 // of a given category.
373 function showhide(tblname) {
374 \$("#" + tblname).toggle();
375 }
376 </script>
377 END
378 ;
379
380 &Header::openbigbox('100%', 'left', '', $errormessage);
381
382 ###############
383 # DEBUG DEBUG
384 # &Header::openbox('100%', 'left', 'DEBUG');
385 # my $debugCount = 0;
386 # foreach my $line (sort keys %snortsettings) {
387 # print "$line = $snortsettings{$line}<br />\n";
388 # $debugCount++;
389 # }
390 # print "&nbsp;Count: $debugCount\n";
391 # &Header::closebox();
392 # DEBUG DEBUG
393 ###############
394
395 if ($errormessage) {
396 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
397 print "<class name='base'>$errormessage\n";
398 print "&nbsp;</class>\n";
399 &Header::closebox();
400 }
401
402 my $return = `pidof oinkmaster.pl -x`;
403 chomp($return);
404 if ($return) {
405 &Header::openbox( 'Waiting', 1, "<meta http-equiv='refresh' content='10;'>" );
406 print <<END;
407 <table>
408 <tr><td>
409 <img src='/images/indicator.gif' alt='$Lang::tr{'aktiv'}' />&nbsp;
410 <td>
411 $Lang::tr{'snort working'}
412 <tr><td colspan='2' align='center'>
413 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
414 <input type='image' alt='$Lang::tr{'reload'}' title='$Lang::tr{'reload'}' src='/images/view-refresh.png' />
415 </form>
416 <tr><td colspan='2' align='left'><pre>
417 END
418 my @output = `tail -20 /var/tmp/log`;
419 foreach (@output) {
420 print "$_";
421 }
422 print <<END;
423 </pre>
424 </table>
425 END
426 &Header::closebox();
427 &Header::closebigbox();
428 &Header::closepage();
429 exit;
430 refreshpage();
431 }
432
433 &Header::openbox('100%', 'left', $Lang::tr{'intrusion detection system'});
434 print <<END
435 <form method='post' action='$ENV{'SCRIPT_NAME'}'><table width='100%'>
436 <tr><td class='base'><input type='checkbox' name='ENABLE_SNORT_GREEN' $checked{'ENABLE_SNORT_GREEN'}{'on'} />GREEN Snort
437 END
438 ;
439 if ($netsettings{'BLUE_DEV'} ne '') {
440 print "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type='checkbox' name='ENABLE_SNORT_BLUE' $checked{'ENABLE_SNORT_BLUE'}{'on'} /> BLUE Snort";
441 }
442 if ($netsettings{'ORANGE_DEV'} ne '') {
443 print "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type='checkbox' name='ENABLE_SNORT_ORANGE' $checked{'ENABLE_SNORT_ORANGE'}{'on'} /> ORANGE Snort";
444 }
445 print "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type='checkbox' name='ENABLE_SNORT' $checked{'ENABLE_SNORT'}{'on'} /> RED Snort";
446
447 print <<END
448 </td></tr>
449 <tr>
450 <td><br><br></td>
451 </tr>
452 <tr>
453 <td><b>$Lang::tr{'ids rules update'}</b></td>
454 </tr>
455 <tr>
456 <td><select name='RULES'>
457 <option value='nothing' $selected{'RULES'}{'nothing'} >$Lang::tr{'no'}</option>
458 <option value='emerging' $selected{'RULES'}{'emerging'} >$Lang::tr{'emerging rules'}</option>
459 <option value='community' $selected{'RULES'}{'community'} >$Lang::tr{'community rules'}</option>
460 <option value='registered' $selected{'RULES'}{'registered'} >$Lang::tr{'registered user rules'}</option>
461 <option value='subscripted' $selected{'RULES'}{'subscripted'} >$Lang::tr{'subscripted user rules'}</option>
462 </select>
463 </td>
464 </tr>
465 <tr>
466 <td><br />
467 $Lang::tr{'ids rules license'} <a href='https://www.snort.org/subscribe' target='_blank'>www.snort.org</a>$Lang::tr{'ids rules license1'}<br /><br />
468 $Lang::tr{'ids rules license2'} <a href='https://www.snort.org/account/oinkcode' target='_blank'>Get an Oinkcode</a>, $Lang::tr{'ids rules license3'}
469 </td>
470 </tr>
471 <tr>
472 <td nowrap='nowrap'>Oinkcode:&nbsp;<input type='text' size='40' name='OINKCODE' value='$snortsettings{'OINKCODE'}' /></td>
473 </tr>
474 <tr>
475 <td width='30%' align='left'><br><input type='submit' name='ACTION' value='$Lang::tr{'download new ruleset'}' />
476 END
477 ;
478 if ( -e "/var/tmp/snortrules.tar.gz"){
479 my @Info = stat("/var/tmp/snortrules.tar.gz");
480 $snortsettings{'INSTALLDATE'} = localtime($Info[9]);
481 }
482 print "&nbsp;$Lang::tr{'updates installed'}: $snortsettings{'INSTALLDATE'}</td>";
483
484 print <<END
485 </tr>
486 </table>
487 <br><br>
488 <table width='100%'>
489 <tr>
490 <td align='right'><input type='hidden' name='ACTION2' value='snort' /><input type='submit' name='ACTION' value='$Lang::tr{'save'}' /></td>
491 </tr>
492 </table>
493 </form>
494 END
495 ;
496
497 &Header::closebox();
498
499 &Header::openbox('100%', 'LEFT', $Lang::tr{'intrusion detection system rules'});
500 print"<form method='POST' action='$ENV{'SCRIPT_NAME'}'>\n";
501
502 # Output display table for rule files
503 print "<table width='100%'>\n";
504
505 # Local variable required for java script to show/hide
506 # rules of a rulefile.
507 my $rulesetcount = 1;
508
509 # Loop over each rule file
510 foreach my $rulefile (sort keys(%snortrules)) {
511 my $rulechecked = '';
512
513 # Check if rule file is enabled
514 if ($snortrules{$rulefile}{'Rulefile'}{'State'} eq 'on') {
515 $rulechecked = 'CHECKED';
516 }
517
518 # Table and rows for the rule files.
519 print"<tr>\n";
520 print"<td class='base' width='5%'>\n";
521 print"<input type='checkbox' name='$rulefile' $rulechecked>\n";
522 print"</td>\n";
523 print"<td class='base' width='90%'><b>$rulefile</b></td>\n";
524 print"<td class='base' width='5%' align='right'>\n";
525 print"<a href=\"javascript:showhide('ruleset$rulesetcount')\">SHOW</a>\n";
526 print"</td>\n";
527 print"</tr>\n";
528
529 # Rows which will be hidden per default and will contain the single rules.
530 print"<tr style='display:none' id='ruleset$rulesetcount'>\n";
531 print"<td colspan='3'>\n";
532
533 # Local vars
534 my $lines;
535 my $rows;
536 my $col;
537
538 # New table for the single rules.
539 print "<table width='100%'>\n";
540
541 # Loop over rule file rules
542 foreach my $sid (sort {$a <=> $b} keys(%{$snortrules{$rulefile}})) {
543 # Local vars
544 my $ruledefchecked = '';
545
546 # Skip rulefile itself.
547 next if ($sid eq "Rulefile");
548
549 # If 2 rules have been displayed, start a new row
550 if (($lines % 2) == 0) {
551 print "</tr><tr>\n";
552
553 # Increase rows by once.
554 $rows++;
555 }
556
557 # Colour lines.
558 if ($rows % 2) {
559 $col="bgcolor='$color{'color20'}'";
560 } else {
561 $col="bgcolor='$color{'color22'}'";
562 }
563
564 # Set rule state
565 if ($snortrules{$rulefile}{$sid}{'State'} eq 'on') {
566 $ruledefchecked = 'CHECKED';
567 }
568
569 # Create rule checkbox and display rule description
570 print "<td class='base' width='5%' align='right' $col>\n";
571 print "<input type='checkbox' NAME='$sid' $ruledefchecked>\n";
572 print "</td>\n";
573 print "<td class='base' width='45%' $col>$snortrules{$rulefile}{$sid}{'Description'}</td>";
574
575 # Increment rule count
576 $lines++;
577 }
578
579 # If do not have a second rule for row, create empty cell
580 if (($lines % 2) != 0) {
581 print "<td class='base'></td>";
582 }
583
584 # Close display table
585 print "</tr></table></td></tr>";
586
587 # Finished whith the rule file, increase count.
588 $rulesetcount++;
589 }
590
591 # Close display table
592 print "</table>";
593
594 print <<END
595 <table width='100%'>
596 <tr>
597 <td width='100%' align='right'><input type='submit' name='RULESET' value='$Lang::tr{'update'}'>
598 &nbsp; <!-- space for future online help link -->
599 </td>
600 </tr>
601 </table>
602 </form>
603 END
604 ;
605 &Header::closebox();
606
607 &Header::closebigbox();
608 &Header::closepage();
609
610 sub refreshpage {
611 &Header::openbox( 'Waiting', 1, "<meta http-equiv='refresh' content='1;'>" );
612 print "<center><img src='/images/clock.gif' alt='' /><br/><font color='red'>$Lang::tr{'pagerefresh'}</font></center>";
613 &Header::closebox();
614 }
615
616 sub downloadrulesfile {
617 my $peer;
618 my $peerport;
619
620 unlink("/var/tmp/log");
621
622 unless (-e "${General::swroot}/red/active") {
623 $errormessage = $Lang::tr{'could not download latest updates'};
624 return undef;
625 }
626
627 my %proxysettings=();
628 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
629
630 if ($_=$proxysettings{'UPSTREAM_PROXY'}) {
631 ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?)?$/);
632 }
633
634 if ($peer) {
635 system("wget -r --proxy=on --proxy-user=$proxysettings{'UPSTREAM_USER'} --proxy-passwd=$proxysettings{'UPSTREAM_PASSWORD'} -e http_proxy=http://$peer:$peerport/ -o /var/tmp/log --output-document=/var/tmp/snortrules.tar.gz $url");
636 } else {
637 system("wget -r -o /var/tmp/log --output-document=/var/tmp/snortrules.tar.gz $url");
638 }
639 }
640
641 sub oinkmaster () {
642 # Call oinkmaster to generate ruleset.
643 system("/usr/local/bin/oinkmaster.pl -v -s -u file:///var/tmp/snortrules.tar.gz -C /var/ipfire/snort/oinkmaster.conf -o /etc/snort/rules >>/var/tmp/log 2>&1 &");
644 }
645
646 sub readrulesfile ($) {
647 my $rulefile = shift;
648
649 # Open rule file and read in contents
650 open(RULEFILE, "$snortrulepath/$rulefile") or die "Unable to read $rulefile!";
651
652 # Store file content in an array.
653 my @lines = <RULEFILE>;
654
655 # Close file.
656 close(RULEFILE);
657
658 # Loop over rule file contents
659 foreach my $line (@lines) {
660 # Remove whitespaces.
661 chomp $line;
662
663 # Skip blank lines.
664 next if ($line =~ /^\s*$/);
665
666 # Local vars.
667 my $sid;
668 my $msg;
669
670 # Gather rule sid and message from the ruleline.
671 if ($line =~ m/.*msg:\"(.*?)\"\; .* sid:(.*?); /) {
672 $msg = $1;
673 $sid = $2;
674
675 # Check if a rule has been found.
676 if ($sid && $msg) {
677 # Add rule to the snortrules hash.
678 $snortrules{$rulefile}{$sid}{'Description'} = $msg;
679
680 # Grab status of the rule. Check if ruleline starts with a "dash".
681 if ($line =~ /^\#/) {
682 # If yes, the rule is disabled.
683 $snortrules{$rulefile}{$sid}{'State'} = "off";
684 } else {
685 # Otherwise the rule is enabled.
686 $snortrules{$rulefile}{$sid}{'State'} = "on";
687 }
688 }
689 }
690 }
691 }