-
Notifications
You must be signed in to change notification settings - Fork 3
/
cleanzone.pl
executable file
·141 lines (115 loc) · 3.66 KB
/
cleanzone.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#!/usr/bin/perl
# Copyright (c) 2012 The Internet Infrastructure Foundation (.SE). All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
# GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
use warnings;
use strict;
use Pod::Usage;
use Getopt::Long;
use Data::Dumper;
use Net::DNS;
use Net::DNS::SEC;
my $DEBUG = 0; # set to true if you want some debug output
my $file; # input zone file
my $limit = 0; # impose limit ($maxlines) for testing purposes
my $maxlines = 50000; # max number of lines to read for example...
my $i = 0; # line counter
my $par = 0; # think of the parenthesis
my $rr = ""; # global rr var
# read and parse the zonefile, building a hash with the data we want
sub readZone
{
my $zoneFile = shift;
my %dnsData;
print " -=> Reading and parsing <=-\n" if $DEBUG;
open(ZONE, "<$zoneFile") or die "can't read file: $zoneFile";
while (<ZONE>)
{
last if $i++ > $maxlines and $limit;
# remove comments and empty lines
next if /^\s*$/; # jump empty lines
next if /^\;/; # jump all-comment lines
s/^(.*)\s*\;.*$/$1/; # remove comments
my $line = $_;
# parentheses states to get whole RR
$rr = $line if not $par;
$rr.= $line if $par;
$par = 1 if $line =~ /\($/;
$par = 0 if $line =~ /\)\s?$/;
# we have got a full RR, lets parse and store
if (not $par)
{
if ($rr =~ /IN\s+DS/)
{
my $dnsrr = Net::DNS::RR->new($rr);
if ($dnsrr->type eq 'DS')
{
print $dnsrr->name.":".$dnsrr->digest."\n" if $DEBUG;
$dnsData{$dnsrr->name}->{'DS'}->{$dnsrr->digest} = $dnsrr;
}
}
elsif ($rr =~ /IN\s+DNSKEY/)
{
my $i = 0;
my $dnsrr = Net::DNS::RR->new($rr);
if ($dnsrr->type eq 'DNSKEY')
{
print $dnsrr->name.":".$dnsrr->keytag."\n" if $DEBUG;
$dnsData{$dnsrr->name}->{'DNSKEY'}->{$i++} = $dnsrr;
}
}
}
}
close ZONE;
return \%dnsData;
}
sub printList {
my $dnsData = shift;
foreach my $name (keys %{$dnsData})
{
print "$name\n";
}
}
sub main() {
my $help = 0;
GetOptions('help|h' => \$help,
'file|f=s' => \$file,
'limit|l' => \$limit,
'debug' => \$DEBUG,
) or pod2usage(2);
pod2usage(1) if($help);
pod2usage(1) if(not defined $file);
my $dnsData = readZone($file);
printList($dnsData);
}
main;
# get the zone, output all domains with a DS to a file
# don't care about any content here
=head1 NAME
burngetzone
=head1 SYNOPSIS
burngetzone.pl -f zonefile
=head1 DESCRIPTION
outputs a list of domains with DS
=head1 AUTHOR
Patrik Wallstrom <[email protected]>
=cut