]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - html/cgi-bin/ids.cgi
ids.cgi: Move call of oinkmaster to an own subfunction
[people/pmueller/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';
73231650 27use File::Copy;
ac1cfefa 28
986e08d9 29require '/var/ipfire/general-functions.pl';
ac1cfefa
MT
30require "${General::swroot}/lang.pl";
31require "${General::swroot}/header.pl";
32
f2fdd0c1
CS
33my %color = ();
34my %mainsettings = ();
0b89daee 35my %netsettings = ();
ac1cfefa 36my %snortsettings=();
298723b9 37my %cgiparams=();
ac1cfefa 38my %checked=();
5a3e0dca 39my %selected=();
0b89daee
SS
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.
ac1cfefa
MT
46&General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
47
48&Header::showhttpheaders();
49
0b89daee 50# Default settings for snort.
ac1cfefa
MT
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'} = '';
5a3e0dca 56$snortsettings{'RULES'} = '';
ac1cfefa
MT
57$snortsettings{'OINKCODE'} = '';
58$snortsettings{'INSTALLDATE'} = '';
ac1cfefa 59
298723b9
SS
60#Get GUI values
61&Header::getcgihash(\%cgiparams);
ac1cfefa 62
422204ff 63my $snortrulepath = "/etc/snort/rules";
e5738079 64my $snortusedrulefilesfile = "${General::swroot}/snort/snort-used-rulefiles.conf";
395e3b90
MT
65my $restartsnortrequired = 0;
66my %snortrules;
0b89daee
SS
67my $errormessage;
68my $url;
395e3b90 69
3da6e01b
SS
70## Grab all available snort rules and store them in the snortrules hash.
71#
422204ff
SS
72# Open snort rules directory and do a directory listing.
73opendir(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
3da6e01b 83 # Use a regular expression to find files ending in .rules
422204ff
SS
84 next unless ($file =~ m/\.rules$/);
85
3da6e01b
SS
86 # Ignore files which are not read-able.
87 next unless (-R "$snortrulepath/$file");
395e3b90 88
3da6e01b
SS
89 # Call subfunction to read-in rulefile and add rules to
90 # the snortrules hash.
91 &readrulesfile("$file");
395e3b90 92 }
395e3b90 93
3da6e01b 94closedir(DIR);
395e3b90 95
e5738079
SS
96# Gather used rulefiles.
97#
98# Check if the file for activated rulefiles is not empty.
99if(-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
298723b9
SS
130# Save ruleset.
131if ($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;
e5738079 138 my @enabled_rulefiles;
298723b9
SS
139
140 # Loop through the hash of snortrules.
141 foreach my $rulefile(keys %snortrules) {
e5738079
SS
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);
b65b5ef3
SS
146
147 # Drop item from cgiparams hash.
148 delete $cgiparams{$rulefile};
e5738079 149 }
466c6779 150 }
e5738079 151
466c6779
SS
152 # Loop through the hash of snortrules.
153 foreach my $rulefile (keys %snortrules) {
298723b9
SS
154 # Loop through the single rules of the rulefile.
155 foreach my $sid (keys %{$snortrules{$rulefile}}) {
156 # Check if there exists a key in the cgiparams hash for this sid.
157 if (exists($cgiparams{$sid})) {
158 # Look if the rule is disabled.
159 if ($snortrules{$rulefile}{$sid}{'State'} eq "off") {
160 # Check if the state has been set to 'on'.
161 if ($cgiparams{$sid} eq "on") {
162 # Add the sid to the enabled_sids array.
163 push(@enabled_sids, $sid);
164
165 # Drop item from cgiparams hash.
60333473 166 delete $cgiparams{$rulefile}{$sid};
298723b9
SS
167 }
168 }
169 } else {
170 # Look if the rule is enabled.
171 if ($snortrules{$rulefile}{$sid}{'State'} eq "on") {
172 # Check if the state is 'on' and should be disabled.
173 # In this case there is no entry
174 # for the sid in the cgiparams hash.
175 # Add it to the disabled_sids array.
176 push(@disabled_sids, $sid);
177
178 # Drop item from cgiparams hash.
60333473 179 delete $cgiparams{$rulefile}{$sid};
298723b9
SS
180 }
181 }
182 }
183 }
184
37659505
SS
185 # Open enabled sid's file for writing.
186 open(FILE, ">$enabled_sids_file") or die "Could not write to $enabled_sids_file. $!\n";
298723b9 187
37659505
SS
188 # Write header to file.
189 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
298723b9 190
37659505
SS
191 # Check if the enabled_sids array contains any sid's.
192 if (@enabled_sids) {
298723b9
SS
193 # Loop through the array of enabled sids and write them to the file.
194 foreach my $sid (@enabled_sids) {
37659505 195 print FILE "enablesid $sid\n";
298723b9 196 }
298723b9
SS
197 }
198
37659505
SS
199 # Close file after writing.
200 close(FILE);
201
202 # Open disabled sid's file for writing.
203 open(FILE, ">$disabled_sids_file") or die "Could not write to $disabled_sids_file. $!\n";
298723b9 204
37659505
SS
205 # Write header to file.
206 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
298723b9 207
37659505
SS
208 # Check if the enabled_sids array contains any sid's.
209 if (@disabled_sids) {
210 # Loop through the array of disabled sids and write them to the file.
211 foreach my $sid (@disabled_sids) {
212 print FILE "disablesid $sid\n";
213 }
214 }
298723b9 215
37659505
SS
216 # Close file after writing.
217 close(FILE);
e5738079
SS
218
219 # Open file for used rulefiles.
37659505 220 open (FILE, ">$snortusedrulefilesfile") or die "Could not write to $snortusedrulefilesfile. $!\n";
e5738079
SS
221
222 # Write header to file.
223 print FILE "#Autogenerated file. Any custom changes will be overwritten!\n";
224
225 # Check if the enabled_rulefiles array contains any entries.
226 if (@enabled_rulefiles) {
227 # Loop through the array of rulefiles which should be loaded and write the to the file.
228 foreach my $file (@enabled_rulefiles) {
229 print FILE "include \$RULE_PATH/$file\n";
230 }
231 }
232
233 # Close file after writing.
234 close(FILE);
298723b9
SS
235}
236
a9a91e5f
MT
237if ($snortsettings{'OINKCODE'} ne "") {
238 $errormessage = $Lang::tr{'invalid input for oink code'} unless ($snortsettings{'OINKCODE'} =~ /^[a-z0-9]+$/);
ac1cfefa
MT
239}
240
a9a91e5f
MT
241if (!$errormessage) {
242 if ($snortsettings{'RULES'} eq 'subscripted') {
9d79aea2 243 $url=" https://www.snort.org/rules/snortrules-snapshot-29111.tar.gz?oinkcode=$snortsettings{'OINKCODE'}";
a9a91e5f 244 } elsif ($snortsettings{'RULES'} eq 'registered') {
9d79aea2 245 $url=" https://www.snort.org/rules/snortrules-snapshot-29111.tar.gz?oinkcode=$snortsettings{'OINKCODE'}";
a9a91e5f
MT
246 } elsif ($snortsettings{'RULES'} eq 'community') {
247 $url=" https://www.snort.org/rules/community";
ac1cfefa 248 } else {
a9a91e5f 249 $url="http://rules.emergingthreats.net/open/snort-2.9.0/emerging.rules.tar.gz";
f9c2147d 250 }
ac1cfefa 251
a9a91e5f
MT
252 if ($snortsettings{'ACTION'} eq $Lang::tr{'save'} && $snortsettings{'ACTION2'} eq "snort" ) {
253 &General::writehash("${General::swroot}/snort/settings", \%snortsettings);
254 if ($snortsettings{'ENABLE_SNORT'} eq 'on')
255 {
256 system ('/usr/bin/touch', "${General::swroot}/snort/enable");
257 } else {
258 unlink "${General::swroot}/snort/enable";
259 }
260 if ($snortsettings{'ENABLE_SNORT_GREEN'} eq 'on')
261 {
262 system ('/usr/bin/touch', "${General::swroot}/snort/enable_green");
263 } else {
264 unlink "${General::swroot}/snort/enable_green";
265 }
266 if ($snortsettings{'ENABLE_SNORT_BLUE'} eq 'on')
267 {
268 system ('/usr/bin/touch', "${General::swroot}/snort/enable_blue");
269 } else {
270 unlink "${General::swroot}/snort/enable_blue";
271 }
272 if ($snortsettings{'ENABLE_SNORT_ORANGE'} eq 'on')
273 {
274 system ('/usr/bin/touch', "${General::swroot}/snort/enable_orange");
275 } else {
276 unlink "${General::swroot}/snort/enable_orange";
277 }
278 if ($snortsettings{'ENABLE_PREPROCESSOR_HTTP_INSPECT'} eq 'on')
279 {
280 system ('/usr/bin/touch', "${General::swroot}/snort/enable_preprocessor_http_inspect");
281 } else {
282 unlink "${General::swroot}/snort/enable_preprocessor_http_inspect";
283 }
395e3b90 284
a9a91e5f
MT
285 system('/usr/local/bin/snortctrl restart >/dev/null');
286 }
a27c40a0 287
a9a91e5f 288 # INSTALLMD5 is not in the form, so not retrieved by getcgihash
ac1cfefa 289 &General::readhash("${General::swroot}/snort/settings", \%snortsettings);
ac1cfefa 290
fbd43017 291 if ($snortsettings{'ACTION'} eq $Lang::tr{'download new ruleset'}) {
a9a91e5f
MT
292 my @df = `/bin/df -B M /var`;
293 foreach my $line (@df) {
294 next if $line =~ m/^Filesystem/;
295 my $return;
296
297 if ($line =~ m/dev/ ) {
298 $line =~ m/^.* (\d+)M.*$/;
299 my @temp = split(/ +/,$line);
300 if ($1<300) {
301 $errormessage = "$Lang::tr{'not enough disk space'} < 300MB, /var $1MB";
302 } else {
303 if ( $snortsettings{'ACTION'} eq $Lang::tr{'download new ruleset'}) {
304 &downloadrulesfile();
305 sleep(3);
306 $return = `cat /var/tmp/log 2>/dev/null`;
307
73231650 308 }
73231650 309
a9a91e5f 310 if ($return =~ "ERROR") {
73231650
CS
311 $errormessage = "<br /><pre>".$return."</pre>";
312 } else {
313 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 &");
314 sleep(2);
32810952 315 }
a9a91e5f 316 }
ac1cfefa 317 }
ac1cfefa
MT
318 }
319 }
320}
321
322$checked{'ENABLE_SNORT'}{'off'} = '';
323$checked{'ENABLE_SNORT'}{'on'} = '';
324$checked{'ENABLE_SNORT'}{$snortsettings{'ENABLE_SNORT'}} = "checked='checked'";
325$checked{'ENABLE_SNORT_GREEN'}{'off'} = '';
326$checked{'ENABLE_SNORT_GREEN'}{'on'} = '';
327$checked{'ENABLE_SNORT_GREEN'}{$snortsettings{'ENABLE_SNORT_GREEN'}} = "checked='checked'";
328$checked{'ENABLE_SNORT_BLUE'}{'off'} = '';
329$checked{'ENABLE_SNORT_BLUE'}{'on'} = '';
330$checked{'ENABLE_SNORT_BLUE'}{$snortsettings{'ENABLE_SNORT_BLUE'}} = "checked='checked'";
331$checked{'ENABLE_SNORT_ORANGE'}{'off'} = '';
332$checked{'ENABLE_SNORT_ORANGE'}{'on'} = '';
333$checked{'ENABLE_SNORT_ORANGE'}{$snortsettings{'ENABLE_SNORT_ORANGE'}} = "checked='checked'";
5a3e0dca 334$selected{'RULES'}{'nothing'} = '';
5a3e0dca 335$selected{'RULES'}{'community'} = '';
a0fa489f 336$selected{'RULES'}{'emerging'} = '';
5a3e0dca
MT
337$selected{'RULES'}{'registered'} = '';
338$selected{'RULES'}{'subscripted'} = '';
339$selected{'RULES'}{$snortsettings{'RULES'}} = "selected='selected'";
ac1cfefa
MT
340
341&Header::openpage($Lang::tr{'intrusion detection system'}, 1, '');
342
17726644
SS
343### Java Script ###
344print <<END
345<script>
346 // Tiny java script function to show/hide the rules
347 // of a given category.
348 function showhide(tblname) {
349 \$("#" + tblname).toggle();
350 }
351</script>
352END
353;
354
ac1cfefa
MT
355&Header::openbigbox('100%', 'left', '', $errormessage);
356
90c2e164
CS
357###############
358# DEBUG DEBUG
359# &Header::openbox('100%', 'left', 'DEBUG');
360# my $debugCount = 0;
361# foreach my $line (sort keys %snortsettings) {
362# print "$line = $snortsettings{$line}<br />\n";
363# $debugCount++;
364# }
365# print "&nbsp;Count: $debugCount\n";
366# &Header::closebox();
367# DEBUG DEBUG
368###############
369
ac1cfefa
MT
370if ($errormessage) {
371 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
372 print "<class name='base'>$errormessage\n";
373 print "&nbsp;</class>\n";
374 &Header::closebox();
375}
376
73231650
CS
377my $return = `pidof oinkmaster.pl -x`;
378chomp($return);
379if ($return) {
380 &Header::openbox( 'Waiting', 1, "<meta http-equiv='refresh' content='10;'>" );
381 print <<END;
382 <table>
383 <tr><td>
384 <img src='/images/indicator.gif' alt='$Lang::tr{'aktiv'}' />&nbsp;
385 <td>
386 $Lang::tr{'snort working'}
387 <tr><td colspan='2' align='center'>
388 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
f8aa0679 389 <input type='image' alt='$Lang::tr{'reload'}' title='$Lang::tr{'reload'}' src='/images/view-refresh.png' />
73231650
CS
390 </form>
391 <tr><td colspan='2' align='left'><pre>
392END
393 my @output = `tail -20 /var/tmp/log`;
394 foreach (@output) {
395 print "$_";
396 }
397 print <<END;
398 </pre>
399 </table>
400END
401 &Header::closebox();
402 &Header::closebigbox();
403 &Header::closepage();
404 exit;
405 refreshpage();
406}
407
7cc8a0e5 408&Header::openbox('100%', 'left', $Lang::tr{'intrusion detection system'});
ac1cfefa
MT
409print <<END
410<form method='post' action='$ENV{'SCRIPT_NAME'}'><table width='100%'>
1b73b07e 411<tr><td class='base'><input type='checkbox' name='ENABLE_SNORT_GREEN' $checked{'ENABLE_SNORT_GREEN'}{'on'} />GREEN Snort
ac1cfefa
MT
412END
413;
414if ($netsettings{'BLUE_DEV'} ne '') {
1b73b07e 415 print "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type='checkbox' name='ENABLE_SNORT_BLUE' $checked{'ENABLE_SNORT_BLUE'}{'on'} /> BLUE Snort";
ac1cfefa
MT
416}
417if ($netsettings{'ORANGE_DEV'} ne '') {
1b73b07e 418 print "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type='checkbox' name='ENABLE_SNORT_ORANGE' $checked{'ENABLE_SNORT_ORANGE'}{'on'} /> ORANGE Snort";
ac1cfefa 419}
1b73b07e 420 print "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type='checkbox' name='ENABLE_SNORT' $checked{'ENABLE_SNORT'}{'on'} /> RED Snort";
1b73b07e 421
ac1cfefa 422print <<END
1b73b07e 423</td></tr>
ac1cfefa 424<tr>
7cc8a0e5 425 <td><br><br></td>
ac1cfefa
MT
426</tr>
427<tr>
428 <td><b>$Lang::tr{'ids rules update'}</b></td>
429</tr>
430<tr>
5a3e0dca
MT
431 <td><select name='RULES'>
432 <option value='nothing' $selected{'RULES'}{'nothing'} >$Lang::tr{'no'}</option>
a0fa489f 433 <option value='emerging' $selected{'RULES'}{'emerging'} >$Lang::tr{'emerging rules'}</option>
5a3e0dca
MT
434 <option value='community' $selected{'RULES'}{'community'} >$Lang::tr{'community rules'}</option>
435 <option value='registered' $selected{'RULES'}{'registered'} >$Lang::tr{'registered user rules'}</option>
436 <option value='subscripted' $selected{'RULES'}{'subscripted'} >$Lang::tr{'subscripted user rules'}</option>
437 </select>
438 </td>
ac1cfefa
MT
439</tr>
440<tr>
441 <td><br />
8d29504c 442 $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 />
4935eb8b 443 $Lang::tr{'ids rules license2'} <a href='https://www.snort.org/account/oinkcode' target='_blank'>Get an Oinkcode</a>, $Lang::tr{'ids rules license3'}
ac1cfefa
MT
444 </td>
445</tr>
446<tr>
5a3e0dca 447 <td nowrap='nowrap'>Oinkcode:&nbsp;<input type='text' size='40' name='OINKCODE' value='$snortsettings{'OINKCODE'}' /></td>
ac1cfefa
MT
448</tr>
449<tr>
7cc8a0e5 450 <td width='30%' align='left'><br><input type='submit' name='ACTION' value='$Lang::tr{'download new ruleset'}' />
ac1cfefa
MT
451END
452;
42d9192e 453if ( -e "/var/tmp/snortrules.tar.gz"){
0972c650
CS
454 my @Info = stat("/var/tmp/snortrules.tar.gz");
455 $snortsettings{'INSTALLDATE'} = localtime($Info[9]);
ac1cfefa 456}
32810952
CS
457print "&nbsp;$Lang::tr{'updates installed'}: $snortsettings{'INSTALLDATE'}</td>";
458
ac1cfefa
MT
459print <<END
460</tr>
461</table>
7cc8a0e5 462<br><br>
ac1cfefa
MT
463<table width='100%'>
464<tr>
7cc8a0e5 465 <td align='right'><input type='hidden' name='ACTION2' value='snort' /><input type='submit' name='ACTION' value='$Lang::tr{'save'}' /></td>
ac1cfefa
MT
466</tr>
467</table>
468</form>
469END
470;
471
ac1cfefa 472&Header::closebox();
fbfdb241 473
f7fcd1c0 474&Header::openbox('100%', 'LEFT', $Lang::tr{'intrusion detection system rules'});
298723b9
SS
475 print"<form method='POST' action='$ENV{'SCRIPT_NAME'}'>\n";
476
f7fcd1c0 477 # Output display table for rule files
17726644 478 print "<table width='100%'>\n";
ce0e83b3 479
17726644
SS
480 # Local variable required for java script to show/hide
481 # rules of a rulefile.
482 my $rulesetcount = 1;
f7fcd1c0
SS
483
484 # Loop over each rule file
485 foreach my $rulefile (sort keys(%snortrules)) {
486 my $rulechecked = '';
487
f7fcd1c0 488 # Check if rule file is enabled
e5738079 489 if ($snortrules{$rulefile}{'Rulefile'}{'State'} eq 'on') {
f7fcd1c0
SS
490 $rulechecked = 'CHECKED';
491 }
3ffee04b 492
17726644
SS
493 # Table and rows for the rule files.
494 print"<tr>\n";
495 print"<td class='base' width='5%'>\n";
e5738079 496 print"<input type='checkbox' name='$rulefile' $rulechecked>\n";
17726644
SS
497 print"</td>\n";
498 print"<td class='base' width='90%'><b>$rulefile</b></td>\n";
499 print"<td class='base' width='5%' align='right'>\n";
500 print"<a href=\"javascript:showhide('ruleset$rulesetcount')\">SHOW</a>\n";
501 print"</td>\n";
502 print"</tr>\n";
503
504 # Rows which will be hidden per default and will contain the single rules.
505 print"<tr style='display:none' id='ruleset$rulesetcount'>\n";
506 print"<td colspan='3'>\n";
507
508 # Local vars
509 my $lines;
510 my $rows;
511 my $col;
512
513 # New table for the single rules.
514 print "<table width='100%'>\n";
515
516 # Loop over rule file rules
517 foreach my $sid (sort {$a <=> $b} keys(%{$snortrules{$rulefile}})) {
f7fcd1c0 518 # Local vars
17726644 519 my $ruledefchecked = '';
f9c2147d 520
e5738079
SS
521 # Skip rulefile itself.
522 next if ($sid eq "Rulefile");
523
17726644
SS
524 # If 2 rules have been displayed, start a new row
525 if (($lines % 2) == 0) {
526 print "</tr><tr>\n";
3ffee04b 527
17726644
SS
528 # Increase rows by once.
529 $rows++;
530 }
f7fcd1c0 531
17726644
SS
532 # Colour lines.
533 if ($rows % 2) {
534 $col="bgcolor='$color{'color20'}'";
535 } else {
536 $col="bgcolor='$color{'color22'}'";
f7fcd1c0
SS
537 }
538
17726644 539 # Set rule state
298723b9 540 if ($snortrules{$rulefile}{$sid}{'State'} eq 'on') {
17726644 541 $ruledefchecked = 'CHECKED';
f7fcd1c0 542 }
3ffee04b 543
17726644
SS
544 # Create rule checkbox and display rule description
545 print "<td class='base' width='5%' align='right' $col>\n";
546 print "<input type='checkbox' NAME='$sid' $ruledefchecked>\n";
547 print "</td>\n";
548 print "<td class='base' width='45%' $col>$snortrules{$rulefile}{$sid}{'Description'}</td>";
549
550 # Increment rule count
551 $lines++;
552 }
553
554 # If do not have a second rule for row, create empty cell
555 if (($lines % 2) != 0) {
556 print "<td class='base'></td>";
f7fcd1c0
SS
557 }
558
559 # Close display table
17726644 560 print "</tr></table></td></tr>";
3ffee04b 561
17726644
SS
562 # Finished whith the rule file, increase count.
563 $rulesetcount++;
f7fcd1c0 564 }
17726644
SS
565
566 # Close display table
567 print "</table>";
568
f7fcd1c0 569print <<END
2999f1d2
CS
570<table width='100%'>
571<tr>
298723b9 572 <td width='100%' align='right'><input type='submit' name='RULESET' value='$Lang::tr{'update'}'>
3ffee04b
CS
573 &nbsp; <!-- space for future online help link -->
574 </td>
2999f1d2
CS
575</tr>
576</table>
298723b9 577</form>
3ffee04b
CS
578END
579;
f7fcd1c0 580&Header::closebox();
395e3b90 581
ac1cfefa
MT
582&Header::closebigbox();
583&Header::closepage();
584
a70d269a
SS
585sub refreshpage {
586 &Header::openbox( 'Waiting', 1, "<meta http-equiv='refresh' content='1;'>" );
587 print "<center><img src='/images/clock.gif' alt='' /><br/><font color='red'>$Lang::tr{'pagerefresh'}</font></center>";
588 &Header::closebox();
589}
590
ac1cfefa 591sub downloadrulesfile {
73231650
CS
592 my $peer;
593 my $peerport;
ac1cfefa 594
73231650 595 unlink("/var/tmp/log");
ac1cfefa
MT
596
597 unless (-e "${General::swroot}/red/active") {
598 $errormessage = $Lang::tr{'could not download latest updates'};
599 return undef;
600 }
601
ac1cfefa
MT
602 my %proxysettings=();
603 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
604
605 if ($_=$proxysettings{'UPSTREAM_PROXY'}) {
73231650 606 ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?)?$/);
ac1cfefa
MT
607 }
608
73231650 609 if ($peer) {
1f606aef 610 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");
73231650 611 } else {
1f606aef 612 system("wget -r -o /var/tmp/log --output-document=/var/tmp/snortrules.tar.gz $url");
ac1cfefa 613 }
ac1cfefa 614}
3da6e01b 615
56dacb58
SS
616sub oinkmaster () {
617 # Call oinkmaster to generate ruleset.
618 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 &");
619}
620
3da6e01b
SS
621sub readrulesfile ($) {
622 my $rulefile = shift;
623
624 # Open rule file and read in contents
625 open(RULEFILE, "$snortrulepath/$rulefile") or die "Unable to read $rulefile!";
626
627 # Store file content in an array.
628 my @lines = <RULEFILE>;
629
630 # Close file.
631 close(RULEFILE);
632
633 # Loop over rule file contents
634 foreach my $line (@lines) {
635 # Remove whitespaces.
636 chomp $line;
637
638 # Skip blank lines.
639 next if ($line =~ /^\s*$/);
640
641 # Local vars.
642 my $sid;
643 my $msg;
644
645 # Gather rule sid and message from the ruleline.
646 if ($line =~ m/.*msg:\"(.*?)\"\; .* sid:(.*?); /) {
647 $msg = $1;
648 $sid = $2;
649
650 # Check if a rule has been found.
651 if ($sid && $msg) {
652 # Add rule to the snortrules hash.
653 $snortrules{$rulefile}{$sid}{'Description'} = $msg;
654
655 # Grab status of the rule. Check if ruleline starts with a "dash".
656 if ($line =~ /^\#/) {
657 # If yes, the rule is disabled.
298723b9 658 $snortrules{$rulefile}{$sid}{'State'} = "off";
3da6e01b
SS
659 } else {
660 # Otherwise the rule is enabled.
298723b9 661 $snortrules{$rulefile}{$sid}{'State'} = "on";
3da6e01b
SS
662 }
663 }
664 }
665 }
666}