-
Notifications
You must be signed in to change notification settings - Fork 3
/
analyze.pl
executable file
·926 lines (826 loc) · 28.5 KB
/
analyze.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
#!/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 JSON; # for input and output of data files
use Data::Dumper; # debugging
use Encode qw< encode decode >; # UTF-8 stuff
use List::Util qw[min max sum]; # for finding min and max values in lists
use Data::Serializer; # for serializing data (needs work)
use Getopt::Long; # option handling
use DateTime::Format::Strptime; # converting RRSIG times
use Pod::Usage; # documentation
### OPTIONS
my $analyzeRcode;
my $analyzeServfail;
my $ListServfails;
my $ListWorking;
my $analyzeServfailList;
my $analyzeWorkingNS;
my $analyzeAllNS;
my $analyzeSigLife;
my $analyzeExtremeSigs;
my $analyzeAlgorithms;
my $anaLyzeNSEC3;
my $analyzeExpiration;
my $countDS;
my $analyzeDSDuplicates;
my $analyzeKeyDuplicates;
my $analyzeKeytags;
my $analyzeKeytagList;
my $analyzeStrangeness;
my $recache = 0;
my $directory;
my $fakedate;
my $limit = 0;
my $verbose = 0;
# get command line options
GetOptions(
'help|?' => \$help,
'directory|d=s' => \$directory,
'limit|l=i' => \$limit,
'recache' => \$recache,
'fakedate=s' => \$fakedate,
'rcode' => \$analyzeRcode,
'servfail' => \$analyzeServfail,
'servfails' => \$ListServfails,
'listworking' => \$ListWorking,
'servfaillist=s' => \$analyzeServfailList,
'countds' => \$countDS,
'dsduplicates' => \$analyzeDSDuplicates,
'keyduplicates' => \$analyzeKeyDuplicates,
'working-ns' => \$analyzeWorkingNS,
'all-ns' => \$analyzeAllNS,
'siglife' => \$analyzeSigLife,
'extreme-sigs' => \$analyzeExtremeSigs,
'expiration' => \$analyzeExpiration,
'algorithms' => \$analyzeAlgorithms,
'nsec3' => \$analyzeNSEC3,
'keytags' => \$analyzeKeytags,
'keytaglist=i' => \$analyzeKeytagList,
'strangeness' => \$analyzeStrangeness,
'verbose|v+' => \$verbose,
) or pod2usage(2);
# help command line option
if ($help or not defined $directory) {
pod2usage(1);
exit;
}
main();
exit;
sub delimiter {
print "----------------------\n";
}
# see if we have this data serialized already
sub checkSerializer
{
my $file = shift || die 'No file given to checkSerializer';
if (-e "$directory/$file") {
print "De-serializing data\n";
my $serialize = Data::Serializer->new();
my $obj = $serialize->retrieve("$directory/$file");
return $obj;
}
return undef;
}
# store serialized data, for cacheing purposes
sub createSerialize
{
my $obj = shift;
my $file = shift;
my $serialize = Data::Serializer->new(serializer => 'JSON');
$serialize->store($obj,"$directory/$file");
print "Serialization done\n";
}
sub main {
# get all entries from the domain directory
#my %super; # all json stuff in one giant hash
my $alldata; # all json stuff in one giant hash
my $cachefile = 'serialize.txt';
$alldata = checkSerializer($cachefile);
if (not defined $alldata) {
print "Reading all json files...\n";
opendir DIR,"$directory/" or die "Cannot open directory: $!";
my @all = grep { -f "$directory/$_" } readdir(DIR);
closedir DIR;
foreach my $file (@all) {
# if ((stat($filename))[7] == 0) { next; };
open FILE, "$directory/$file" or die "Cannot read file domain/$file: $!";
my @j = <FILE>;
next if not defined $j[0];
$j = getJSON($j[0]);
$alldata->{$j->{'domain'}} = $j if defined $j;
close FILE;
}
}
createSerialize($alldata,'serialize.txt');
print "Running analysis\n";
if ($analyzeRcode) {
print "Return codes:\n";
analyzeRcodes($alldata);
delimiter;
}
if ($analyzeServfail) {
print "Toplist of name servers with SERVFAIL:\n";
analyzeServfails($alldata);
delimiter;
}
if ($ListServfails) {
print "List of all domains that is all SERVFAIL:\n";
ListServfails($alldata);
delimiter;
}
if ($ListWorking) {
print "List of all domains that is all \"working\":\n";
ListWorking($alldata);
delimiter;
}
if ($analyzeServfailList) {
print "List of SERVFAIL domains for $analyzeServfailList:\n";
getServfailList($alldata,$analyzeServfailList);
delimiter;
}
if ($countDS) {
print "Count the number of domains with DS records:\n";
countDS($alldata);
delimiter;
}
if ($analyzeDSDuplicates) {
print "Number of domains that share the same DS records:\n";
analyzeDSDuplicates($alldata);
delimiter;
}
if ($analyzeKeyDuplicates) {
print "Number of domains that share the same DNSKEY records:\n";
analyzeKeyDuplicates($alldata);
delimiter;
}
if ($analyzeWorkingNS) {
print "Toplist of name servers with NO ERROR on all queries\n";
analyzeWorkingNS($alldata);
delimiter;
}
if ($analyzeAllNS) {
print "List all name servers in descending order # of associated zones\n";
listAllNS($alldata);
delimiter;
}
if ($analyzeSigLife) {
print "Analysis of RRSIG lifetimes:\n";
analyzeSigLifetimes($alldata,$fakedate);
delimiter;
}
if ($analyzeExtremeSigs) {
print "List extreme RRSIG lifetimes (inception and expiration larger than 100 days):\n";
extremeSigLifetimes($alldata,$fakedate);
delimiter;
}
if ($analyzeExpiration) {
print "Number of days that SOA expire is larger then lowest RRSIG (expire-rrsig, count):\n";
analyzeExpiration($alldata,$fakedate);
delimiter;
}
if ($analyzeAlgorithms) {
print "DNSSEC Algorithms:\n";
analyzeAlgorithms($alldata);
delimiter;
}
if ($analyzeNSEC3) {
print "NSEC3 Analysis:\n";
analyzeNSEC3($alldata);
delimiter;
}
if ($analyzeKeytags) {
print "DNSSEC Keytags:\n";
analyzeKeytags($alldata);
delimiter;
}
if ($analyzeKeytagList) {
print "Zones with keytag $analyzeKeytagList:\n";
getKeytagList($alldata,$analyzeKeytagList);
delimiter;
}
if ($analyzeStrangeness) {
print "Listing zones with differing status codes...:\n";
analyzeStrangeness($alldata);
delimiter;
}
print "Domains with data: ".scalar keys(%{$alldata})."\n";
}
# find values in a hash by adressing it like this "key:key2:key3"
sub findValue {
my $hash = shift;
my $find = shift;
my $value;
my $defined;
my @keys = split (':',$find);
@keys = map { "{'$_'}" } @keys;
my $evalHash = '$hash->'.join('->',@keys);
eval '$defined = defined '.$evalHash;
return undef if $@;
return undef if $defined eq '';
eval '$value = '.$evalHash;
return undef if $@;
return $value if defined $value;
return 1;
}
sub getJSON {
# fix utf-8 problems and decode JSON
my $j = shift;
$j = encode('UTF-8', $j);
$j = JSON->new->utf8->decode($j);
return $j;
}
# analyze domain
sub analyzeRcodes {
my $bighash = shift;
my %result;
# collect data
foreach my $domain (keys(%{$bighash})) {
$result{'A:'.findValue($bighash->{$domain}, 'A:rcode')}++;
$result{'MX:'.findValue($bighash->{$domain}, 'MX:rcode')}++;
$result{'SOA:'.findValue($bighash->{$domain}, 'soa:rcode')}++;
$result{'NSEC3PARAM:'.findValue($bighash->{$domain}, 'nsec3param:rcode')}++;
$result{'DNSKEY:'.findValue($bighash->{$domain}, 'dnskey:rcode')}++;
}
# output summary
foreach my $key (sort keys(%result)) {
print "$key: $result{$key}\n";
}
}
# list of total servfails
sub analyzeServfails {
my $bighash = shift;
my %result;
my $count = 0;;
# collect data
foreach my $domain (keys(%{$bighash})) {
if(findValue($bighash->{$domain},'A:rcode') eq 'SERVFAIL' or
findValue($bighash->{$domain},'MX:rcode') eq 'SERVFAIL' or
findValue($bighash->{$domain},'soa:rcode') eq 'SERVFAIL' or
findValue($bighash->{$domain},'nsec3param:rcode') eq 'SERVFAIL' or
findValue($bighash->{$domain},'dnskey:rcode') eq 'SERVFAIL') {
foreach my $rrs (findValue($bighash->{$domain},'NS:list')) {
foreach my $ns (@$rrs) {
$result{$ns->{'nsdname'}}++;
}
}
$count++;
}
}
# output summary
my $i = 0;
foreach my $key (sort { $result{$b} <=> $result{$a} } keys %result) {
print "$key: $result{$key}\n";
$i++;
last if $i > $limit and $limit > 0;
}
print "Total number of domains with any SERVFAIL: $count\n";
}
# list of domains that is all servfail
sub ListServfails {
my $bighash = shift;
my @result;
my $count = 0;;
# collect data
foreach my $domain (keys(%{$bighash})) {
if(findValue($bighash->{$domain},'A:rcode') eq 'SERVFAIL' and
findValue($bighash->{$domain},'MX:rcode') eq 'SERVFAIL' and
findValue($bighash->{$domain},'soa:rcode') eq 'SERVFAIL' and
findValue($bighash->{$domain},'nsec3param:rcode') eq 'SERVFAIL' and
findValue($bighash->{$domain},'dnskey:rcode') and 'SERVFAIL') {
push @result, $domain;
$count++;
}
}
# output summary
my $i = 0;
foreach (@result) {
print "$_\n";
}
print "Total number of domains with all SERVFAIL: $count\n";
}
sub ListWorking {
my $bighash = shift;
my @result;
my @fails;
my $count_pass = 0;
my $count_fail = 0;
# collect data
foreach my $domain (keys(%{$bighash})) {
if(findValue($bighash->{$domain},'A:rcode') eq 'NOERROR' or
findValue($bighash->{$domain},'MX:rcode') eq 'NOERROR' or
findValue($bighash->{$domain},'soa:rcode') eq 'NOERROR') {
push @result, $domain;
$count_pass++;
} else {
push @fails, $domain;
$count_fail++;
}
}
# output list of servfail domains, if verbose
if ($verbose) {
print "Domains that are not working (SERVFAIL):\n";
map { print "$_\n" } @fails;
}
# output summary
print "Total number of domains with (at least) one of the following working ".
"(on A, MX and SOA): $count_pass\n";
print "Total number of domains with NONE of the following working ".
"(on A, MX and SOA): $count_fail\n";
}
sub getServfailList {
my $bighash = shift;
my $nameserver = shift;
my @result;
# collect data
foreach my $domain (keys(%{$bighash})) {
if(findValue($bighash->{$domain},'A:rcode') eq 'SERVFAIL' or
findValue($bighash->{$domain},'MX:rcode') eq 'SERVFAIL' or
findValue($bighash->{$domain},'soa:rcode') eq 'SERVFAIL' or
findValue($bighash->{$domain},'nsec3param:rcode') eq 'SERVFAIL' or
findValue($bighash->{$domain},'dnskey:rcode') eq 'SERVFAIL') {
foreach my $rrs (findValue($bighash->{$domain},'NS:list')) {
foreach my $ns (@$rrs) {
if ($ns->{'nsdname'} eq $nameserver) {
push @result, $domain;
}
}
}
}
}
# output list of domains
foreach my $domain (sort @result) {
print "SERVFAIL $nameserver: $domain\n";
}
}
# count the number of DS records (also per domain)
sub countDS {
my $bighash = shift;
my $nameserver = shift;
my %result;
# collect data
foreach my $domain (keys(%{$bighash})) {
my $dss = $bighash->{$domain}->{'ds'};
foreach my $ds (@$dss) {
$result{$domain}++;
}
}
# output summary
my $i = 0;
foreach my $key (sort { $result{$b} <=> $result{$a} } keys %result) {
print "$key: $result{$key}\n";
$i++;
last if $i > $limit and $limit > 0;
}
print "Total number of domains with DS: $i\n";
}
# find all DS duplicates among domains and output
sub analyzeDSDuplicates {
my $bighash = shift;
my $nameserver = shift;
my %result;
# collect data
foreach my $domain (keys(%{$bighash})) {
my $dss = $bighash->{$domain}->{'ds'};
foreach my $ds (@$dss) {
$result{$ds->{'digest'}}++;
}
}
# output summary
my $i = 0;
foreach my $key (sort { $result{$b} <=> $result{$a} } keys %result) {
print "$key: $result{$key}\n";
$i++;
last if $i > $limit and $limit > 0;
}
}
# list of all NS with NOERROR
sub analyzeWorkingNS {
my $bighash = shift;
my %result;
# collect data
foreach my $domain (keys(%{$bighash})) {
if(findValue($bighash->{$domain},'A:rcode') eq 'NOERROR' and
findValue($bighash->{$domain},'MX:rcode') eq 'NOERROR' and
findValue($bighash->{$domain},'soa:rcode') eq 'NOERROR' and
findValue($bighash->{$domain},'nsec3param:rcode') eq 'NOERROR' and
findValue($bighash->{$domain},'dnskey:rcode') eq 'NOERROR') {
foreach my $rrs (findValue($bighash->{$domain},'NS:list')) {
foreach my $ns (@$rrs) {
$result{$ns->{'nsdname'}}++;
}
}
}
}
# output summary
my $i = 0;
foreach my $key (sort { $result{$b} <=> $result{$a} } keys %result) {
print "$key: $result{$key}\n";
$i++;
last if $i > $limit and $limit > 0;
}
}
# list of all NS
sub listAllNS {
my $bighash = shift;
my %result;
# collect data
foreach my $domain (keys(%{$bighash})) {
foreach my $rrs (findValue($bighash->{$domain},'NS:list')) {
foreach my $ns (@$rrs) {
$result{$ns->{'nsdname'}}++;
}
}
}
# output summary
my $i = 0;
foreach my $key (sort { $result{$b} <=> $result{$a} } keys %result) {
print "$key: $result{$key}\n";
$i++;
last if $i > $limit and $limit > 0;
}
my $nons = scalar keys %result;
print "Total number of NS: $nons\n";
}
# create a fake date and return a DateTime-object (for date comparisons)
sub getFakeDate {
my $fakedate = shift;
my $strp = new DateTime::Format::Strptime(
pattern => '%Y-%m-%d',
time_zone => 'UTC',
on_error => 'croak');
if (defined $fakedate) {
my $ft = $strp->parse_datetime($fakedate);
return $ft;
}
return undef;
}
# analyze DNSKEY, DS and RRSIG Algorithms
sub analyzeAlgorithms {
my $bighash = shift;
my (%rrsig, %ds, %dnskey, %ksk, %zsk, %dnskeylen, %ksklen, %zsklen);
my $i = 0;
# collect data (build result hashes)
foreach my $domain (keys(%{$bighash})) {
next if $bighash->{$domain}->{'dnskey'}->{'rcode'} eq 'SERVFAIL';
my $dss = findValue($bighash->{$domain},'ds');
my $rrsigs = findValue($bighash->{$domain},'rrsig');
my $dnskeys = findValue($bighash->{$domain},'dnskey:list');
# DS records
map { $ds{$_->{'digtype'}}++ } @$dss;
# RRSIG algorithms, skip DS since not from child zone
map { $rrsig{$_->{'algorithm'}}++ } grep ($_->{'typecovered'} ne 'DS', @$rrsigs);
# DNSKEY keylengths and algorithms
foreach my $key (@$dnskeys) {
$dnskey{$key->{'algorithm'}}++;
$dnskeylen{$key->{'keylength'}}++;
if ($key->{'is_sep'}) {
$ksk{$key->{'algorithm'}}++;
$ksklen{$key->{'keylength'}}++;
} else {
$zsk{$key->{'algorithm'}}++;
$zsklen{$key->{'keylength'}}++;
}
}
$i++; # count working zones
}
# collect totals
my $total = int grep $bighash{$_}->{'dnskey'}->{'rcode'} ne 'NOERROR', keys(%{$bighash});
my $dstotal = 0; ($dstotal += $_) for values %ds;
my $dnskeytotal = 0; ($dnskeytotal += $_) for values %dnskey;
my $ksktotal = 0; ($ksktotal += $_) for values %ksk;
my $zsktotal = 0; ($zsktotal += $_) for values %zsk;
# output summary
map { print "DS Digest type $_: $ds{$_}\n"; } sort {$a <=> $b} keys %ds;
map { print "RRSIG Algorithms $_: $rrsig{$_}\n"; } sort {$a <=> $b} keys %rrsig;
map { print "DNSKEY Algorithms $_: $dnskey{$_}\n"; } sort {$a <=> $b} keys %dnskey;
map { print "DNSKEY Keylengths $_: $dnskeylen{$_}\n"; } sort {$a <=> $b} keys %dnskeylen;
map { print " (KSK) Algorithms $_: $ksk{$_}\n"; } sort {$a <=> $b} keys %ksk;
map { print " (ZSK) Algorithms $_: $zsk{$_}\n"; } sort {$a <=> $b} keys %zsk;
map { print " (KSK) Keylengths $_: $ksklen{$_}\n"; } sort {$a <=> $b} keys %ksklen;
map { print " (ZSK) Keylengths $_: $zsklen{$_}\n"; } sort {$a <=> $b} keys %zsklen;
print "Total DS: $dstotal\n";
print "Total KSK: $ksktotal\n";
print "Total ZSK: $zsktotal\n";
print "Total DNSKEY: $dnskeytotal\n";
print "DS per domain: ".$dstotal / $i."\n";
print "KSK per domain: ".$ksktotal / $i."\n";
print "ZSK per domain: ".$zsktotal / $i."\n";
print "DNSKEY per domain: ".$dnskeytotal / $i."\n";
print "Algorithms based on total $i zones - the rest was SERVFAIL\n";
}
# analyze NSEC3 (salt, iterations)
sub analyzeNSEC3 {
my $bighash = shift;
my (%saltlen, %iterations, %hashalgo);
my $i = 0;
my $nsec3tot = 0;
# collect data (build result hashes)
foreach my $domain (keys(%{$bighash})) {
next if $bighash->{$domain}->{'dnskey'}->{'rcode'} eq 'SERVFAIL';
$i++; # count working zones
my $nsec3param = findValue($bighash->{$domain},'nsec3param');
next if not defined $nsec3param->{'hashalgo'};
$nsec3tot++; # this is nsec3
$saltlen{length($nsec3param->{'salt'})}++;
$iterations{$nsec3param->{'iterations'}}++;
$hashalgo{$nsec3param->{'hashalgo'}}++;
}
# collect totals
my $nsectot = $i - $nsec3tot;
# output summary
map { print "NSEC3 Salt length $_: $saltlen{$_}\n"; } sort {$a <=> $b} keys %saltlen;
map { print "NSEC3 Iterations $_: $iterations{$_}\n"; } sort {$a <=> $b} keys %iterations;
map { print "NSEC3 Hash algorithm $_: $hashalgo{$_}\n"; } sort {$a <=> $b} keys %hashalgo;
print "NSEC zones: $nsectot\n";
print "NSEC analysis based on total $i zones - the rest was SERVFAIL\n";
}
# finds extreme lifetimes where extreme is hardcoded to 100 days diff from expiration or inception
sub extremeSigLifetimes {
my $bighash = shift;
my $fakedate = shift;
my $strp = new DateTime::Format::Strptime(
pattern => '%Y%m%d%H%M%S',
time_zone => 'UTC');
$fakedate = getFakeDate($fakedate) if defined $fakedate;
my $now = defined $fakedate ? $fakedate : DateTime->now; # now is possibly another date
my @extremes;
# collect data
foreach my $domain (keys(%{$bighash})) {
my $rrsigarray = findValue($bighash->{$domain},'rrsig');
my (@inc,@exp,@tot);
foreach my $rrsig (@$rrsigarray) {
next if $rrsig->{'typecovered'} eq 'DS'; # skip DS, not from child zone
my $sigexp = $strp->parse_datetime($rrsig->{'sigexpiration'});
my $siginc = $strp->parse_datetime($rrsig->{'siginception'});
my $inc = int $siginc->subtract_datetime_absolute($now)->delta_seconds / 86400;
my $exp = int $sigexp->subtract_datetime_absolute($now)->delta_seconds / 86400;
if ($inc < -100 or $exp > 100) {
push @extremes,$domain;
last;
}
}
}
# output summary
foreach (@extremes) { print "$_\n"; }
}
# discover the validity lifetimes of the signatures
sub analyzeSigLifetimes {
my $bighash = shift;
my $fakedate = shift;
my $now;
my %exps; # expiration times in days
my %incs; # inception times in days
my %life; # difference between expiration and inception in days
my $res; # new result hash
# convert RRSIG times to DateTime objects with $strp
my $strp = new DateTime::Format::Strptime(
pattern => '%Y%m%d%H%M%S',
time_zone => 'UTC');
$fakedate = getFakeDate($fakedate) if defined $fakedate;
$now = defined $fakedate ? $fakedate : DateTime->now; # now is possibly another date
# collect data
my $i = 0; # temp limit
foreach my $domain (keys(%{$bighash})) {
my $rrsigarray = findValue($bighash->{$domain},'rrsig');
my (@inc,@exp,@tot);
my $sigcount = 0;
foreach my $rrsig (@$rrsigarray) {
next if $rrsig->{'typecovered'} eq 'DS'; # skip DS, not from child zone
my $sigexp = $strp->parse_datetime($rrsig->{'sigexpiration'});
my $siginc = $strp->parse_datetime($rrsig->{'siginception'});
my $inc = int $siginc->subtract_datetime_absolute($now)->delta_seconds / 86400;
my $exp = int $sigexp->subtract_datetime_absolute($now)->delta_seconds / 86400;
my $tot = int $sigexp->subtract_datetime_absolute($siginc)->delta_seconds / 86400;
$incs{$inc}++; # build result hash with inception times
$exps{$exp}++; # build result hash with expiration times
$life{$tot}++; # build result hash with total lifetimes
push @inc, $inc;
push @exp, $exp;
push @tot, $tot;
$sigcount++;
}
next if $sigcount == 0;
# calc and store results
$res->{'incmin'}->{min @inc}++;
$res->{'incmax'}->{max @inc}++;
$res->{'incavg'}->{sprintf('%.0f',(sum @inc)/$sigcount)}++;
$res->{'expmin'}->{min @exp}++;
$res->{'expmax'}->{max @exp}++;
$res->{'expavg'}->{sprintf('%.0f',(sum @exp)/$sigcount)}++;
$i++;
last if $i > $limit and $limit > 0;
}
# output data
# use closure to print all these hashes with results
my $loop = sub {
my $var = shift;
foreach my $days (sort {$a <=> $b} keys %{$res->{$var}}) {
print "$days,".$res->{$var}->{$days}."\n";
}
};
print "Signature average inception (days, count)\n";
&$loop('incavg');
delimiter;
print "Signature lowest inception (days, count)\n";
&$loop('incmin');
delimiter;
print "Signature highest inception (days, count)\n";
&$loop('incmax');
delimiter;
print "Signature average expiration (days, count)\n";
&$loop('expavg');
delimiter;
print "Signature lowest expiration (days, count)\n";
&$loop('expmin');
delimiter;
print "Signature highest expiration (days, count)\n";
&$loop('expmax');
}
# Correlate SOA expiration value with lowest RRSIG lifetime
sub analyzeExpiration {
my $bighash = shift;
my $fakedate = shift;
my $now;
my ($lower, $higher) = (0,0,0);
my %res; # result hash
my %soaexpire; # results for the SOA expire
my $notdefined = 0;
# convert RRSIG times to DateTime objects with $strp
my $strp = new DateTime::Format::Strptime(
pattern => '%Y%m%d%H%M%S',
time_zone => 'UTC');
$fakedate = getFakeDate($fakedate) if defined $fakedate;
$now = defined $fakedate ? $fakedate : DateTime->now; # now is possibly another date
my $i = 0;
# collect data (build result hashes)
foreach my $domain (keys(%{$bighash})) {
my $rrsigarray = findValue($bighash->{$domain},'rrsig');
my (@inc,@exp,@tot);
my $sigcount = 0;
foreach my $rrsig (@$rrsigarray) {
next if $rrsig->{'typecovered'} eq 'DS'; # skip DS, not from child zone
my $sigexp = $strp->parse_datetime($rrsig->{'sigexpiration'});
my $exp = int $sigexp->subtract_datetime_absolute($now)->delta_seconds;
push @exp, $exp;
}
next if int @exp == 0;
my $minexp = min @exp;
my $expire = findValue($bighash->{$domain},'soa:expire');
$soaexpire{sprintf('%.0f',$expire/86400)}++;
$higher++ if $expire > $minexp;
$lower++ if $expire < $minexp;
$res{sprintf('%.0f',($expire/86400)-($minexp/86400))}++ if defined $expire;# if $expire >= $minexp;
$notdefined++ if not defined $expire;
$i++;
last if $i > $limit and $limit > 0;
}
# output summary
map { print "$_: $res{$_}\n"; } sort {$a <=> $b} keys %res;
print "Expire is higher (bad) than RRSIG lifetime: $higher\n";
print "Expire is lower (good) than RRSIG lifetime: $lower\n";
print "(SOA Expire was missing for $notdefined zones...)\n";
print "Epiration analysis based on total $i zones - the rest was SERVFAIL\n";
delimiter;
print "Summary of SOA expire values\n";
map { print "$_: $soaexpire{$_}\n"; } sort {$a <=> $b} keys %soaexpire;
}
# Analyze DNSKEY keys (shared keys)
sub analyzeKeyDuplicates {
my $bighash = shift;
my %result;
# collect data
foreach my $domain (keys(%{$bighash})) {
next if $bighash->{$domain}->{'dnskey'}->{'rcode'} ne 'NOERROR';
my $list = findValue($bighash->{$domain},'dnskey:list');
foreach my $key (@$list) {
$result{$key->{'key'}}++ if $key->{'is_sep'};
}
}
# output summary
my $i = 0;
foreach my $key (sort { $result{$b} <=> $result{$a} } keys %result) {
print "DNSKEY".($i+1).": $result{$key}\n";
$i++;
last if $i > $limit and $limit > 0;
}
}
# Analyze DNSKEY keytags
sub analyzeKeytags {
my $bighash = shift;
my %result;
# collect data
foreach my $domain (keys(%{$bighash})) {
next if $bighash->{$domain}->{'dnskey'}->{'rcode'} ne 'NOERROR';
my $list = findValue($bighash->{$domain},'dnskey:list');
foreach my $key (@$list) {
$result{$key->{'keytag'}}++ if $key->{'is_sep'};
}
}
# output summary
my $i = 0;
foreach my $keytag (sort { $result{$b} <=> $result{$a} } keys %result) {
print "$keytag: $result{$keytag}\n";
$i++;
last if $i > $limit and $limit > 0;
}
}
# List all domains with a specific keytag
sub getKeytagList {
my $bighash = shift;
my $keytag = shift;
my $count = 0;
# list zones with specified keytag
foreach my $domain (keys(%{$bighash})) {
next if $bighash->{$domain}->{'dnskey'}->{'rcode'} ne 'NOERROR';
my $list = findValue($bighash->{$domain},'dnskey:list');
foreach my $key (@$list) {
if ($key->{'keytag'} eq $keytag)
{
print "$domain\n" unless $count > $limit and $limit > 0;
$count++;
last;
}
}
}
print "Total number of domains with keytag $keytag: $count\n";
}
# list of total servfails
sub analyzeStrangeness {
my $bighash = shift;
my @result;
my $count = 0;;
# collect data
foreach my $domain (keys(%{$bighash})) {
my $a = findValue($bighash->{$domain},'A:rcode');
my $dnskey = findValue($bighash->{$domain},'dnskey:rcode');
my $mx = findValue($bighash->{$domain},'MX:rcode');
my $nsec3param = findValue($bighash->{$domain},'nsec3param:rcode');
my $soa = findValue($bighash->{$domain},'soa:rcode');
if ($a ne $soa) {
push @result, $domain;
$count++;
}
}
# output summary
foreach my $domain (sort @result) {
print "$domain\n";
}
print "Total number of domains with strangeness: $count\n";
}
__END__
=head1 NAME
analyze.pl
=head1 USAGE
analyze -d directory
Required argument(s):
--directory directory A directory with collected JSON files
Optional arguments:
--verbose Add unnecessary output to some analysis
--limit value When generating lists, limit the length to this value
--recache Recreate our serialized cache (TODO)
--fake-date YY-MM-DD Make this the current date for signature lifetime comparisons
--rcode Analyze RCODEs
--countds Count DS records (per domain and in total)
--listworking Summary of domains that is "working" (NOERROR on MX, SOA or A)
--servfail Toplist of name servers with SERVFAIL
--servfails List all domains with all SERVFAIL
--servfaillist ns Get all domains that SERVFAIL on this name server
--dsduplicates Toplist of the number of domains that has the same DS record
--keyduplicates Toplist of the number of domains that has the same DNSKEY
--working-ns Toplist of name servers not NO ERROR on all queries
--all-ns List all name servers in descending order # of associated zones
--siglife Analyze RRSIG lifetimes
--extreme-sigs List extreme RRSIG lifetimes (inception and expiration larger than 100 days)
--expiration Correlate SOA expiration value with lowest RRSIG lifetime
--algorithms Analyze DNSSEC algorithms and keylengths
--nsec3 Analyze NSEC3 (salt, iterations)
--keytags Analyze distribution of DNSKEY keytags
--keytaglist n List zones which contain the specified keytag
--strangeness The Strangeness Factor
=head1 TODO
Look at the JSON cache, add recache-dommand.
Correlate SOA expire value with lowest RRSIG lifetime.
=head1 AUTHOR
Patrik Wallström <[email protected]>
=cut