-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcheck-iptables.pl
executable file
·58 lines (49 loc) · 1.46 KB
/
check-iptables.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/perl -w
use strict;
use warnings;
use Data::Dumper;
my (@template, @l_exc, @t_exc);
my (%template, %l_exc, %t_exc);
# slurp in the template file.
open IN, "</root/iptables-template" or die "Could not open template file: $! \n";
while (my $line = <IN>) {
chomp($line);
push @template, $line;
$template{$line}++;
}
close IN or die "Could not close template file: $! \n";
# get the local rules
my @iptables = `/sbin/iptables-save`;
my %iptables;
foreach my $r ( @iptables ) {
chomp($r);
$iptables{$r}++;
}
#print Dumper(%template);
#print "=====================================\n";
#print Dumper(%iptables);
#exit 0;
# set local exceptions, i.e. things that are in the template but not local.
foreach my $r ( keys %template ) {
chomp($r);
if (exists($iptables{$r})) { next; }
elsif ($r =~ /^#/) { next; } # ignore comments
else { $l_exc{$r}++; }
}
# set template excpetions, i.e. things NOT in the template that are local.
foreach my $r ( @iptables ) {
chomp($r);
if (exists($template{$r})) { next; }
elsif ($r =~ /^#/) { next; } # ignore comments
else { $t_exc{$r}++; }
}
print "Local exceptions (In template, NOT in local):\n";
#print Dumper(%l_exc);
foreach my $rule ( sort keys %l_exc ) {
# ignore chain policies that are passing/dropping packets
next if ($rule =~ /:INPUT DROP \[\d+\:\d+]/);
print "$rule\n";
}
print "Template exceptions (in local, NOT in template):\n";
#print Dumper(%t_exc);
foreach my $rule ( sort keys %t_exc ) { print "$rule\n"; }