-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
dns_sec.go
396 lines (340 loc) · 10.9 KB
/
dns_sec.go
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
package paymail
import (
"fmt"
"strings"
"time"
"github.com/miekg/dns"
"golang.org/x/net/idna"
"golang.org/x/net/publicsuffix"
)
/*
Alternative checks:
https://dnsviz.net/d/domain.com/dnssec/
https://dnssec-analyzer.verisignlabs.com/domain.com
*/
// DNSCheckResult struct is returned for the DNS check
type DNSCheckResult struct {
Answer answer `json:"answer"`
CheckTime time.Time `json:"check_time"`
DNSSEC bool `json:"dnssec"`
Domain string `json:"domain,omitempty"`
ErrorMessage string `json:"error_message,omitempty"`
NSEC nsec `json:"nsec"`
}
// nsec struct for NSEC type
type nsec struct {
NSEC *dns.NSEC `json:"nsec,omitempty"`
NSEC3 *dns.NSEC3 `json:"nsec_3,omitempty"`
NSEC3PARAM *dns.NSEC3PARAM `json:"nsec_3_param,omitempty"`
Type string `json:"type,omitempty"`
}
// answer struct the answer of the DNS question
type answer struct {
CalculatedDS []*domainDS `json:"calculate_ds,omitempty"`
DNSKEYRecordCount int `json:"dnskey_record_count,omitempty"`
DNSKEYRecords []*domainDNSKEY `json:"dnskey_records,omitempty"`
DSRecordCount int `json:"ds_record_count,omitempty"`
DSRecords []*domainDS `json:"ds_records,omitempty"`
Matching matching `json:"matching,omitempty"`
}
// matching struct for information
type matching struct {
DNSKEY []*domainDNSKEY `json:"dnskey,omitempty"`
DS []*domainDS `json:"ds,omitempty"`
}
// domainDS struct
//
// DO NOT CHANGE ORDER - Optimized for memory (malign)
type domainDS struct {
Digest string `json:"digest,omitempty"`
KeyTag uint16 `json:"key_tag,omitempty"`
Algorithm uint8 `json:"algorithm,omitempty"`
DigestType uint8 `json:"digest_type,omitempty"`
}
// domainDNSKEY struct
//
// DO NOT CHANGE ORDER - Optimized for memory (malign)
type domainDNSKEY struct {
PublicKey string `json:"public_key,omitempty"`
CalculatedDS *domainDS `json:"calculate_ds,omitempty"`
Flags uint16 `json:"flags,omitempty"`
Algorithm uint8 `json:"algorithm,omitempty"`
Protocol uint8 `json:"protocol,omitempty"`
}
// Domains that DO NOT work properly for DNSSEC validation
var (
// todo: find a way to make these work
// https://network-tools.com/nslookup/ for a heroku app produces 0 results
domainsWithIssues = []string{
"herokuapp.com", // CNAME on heroku is a pointer, and thus there is no NS returned
}
)
// CheckDNSSEC will check the DNSSEC for a given domain
//
// Paymail providers should have DNSSEC enabled for their domain
func (c *Client) CheckDNSSEC(domain string) (result *DNSCheckResult) {
// Start the new result
result = new(DNSCheckResult)
result.CheckTime = time.Now()
var err error
// Valid domain name (ASCII or IDN)
if domain, err = idna.ToASCII(domain); err != nil {
result.ErrorMessage = fmt.Sprintf("failed in ToASCII: %s", err.Error())
return
}
// Validate domain
if domain, err = publicsuffix.EffectiveTLDPlusOne(domain); err != nil {
result.ErrorMessage = fmt.Sprintf("failed in EffectiveTLDPlusOne: %s", err.Error())
return
}
// Set the valid domain now
result.Domain = domain
// Check known domain issues
for _, d := range domainsWithIssues {
if strings.Contains(result.Domain, d) {
result.ErrorMessage = fmt.Sprintf("%s cannot be validated due to a known issue with %s", result.Domain, d)
return
}
}
// Set the TLD
tld, _ := publicsuffix.PublicSuffix(domain)
// Set the registry name server
var registryNameserver string
if registryNameserver, err = resolveOneNS(tld, c.options.nameServer, c.options.dnsPort); err != nil {
result.ErrorMessage = fmt.Sprintf("failed in resolveOneNS: %s", err.Error())
return
}
// Set the domain name server
var domainNameserver string
if domainNameserver, err = resolveOneNS(domain, c.options.nameServer, c.options.dnsPort); err != nil {
result.ErrorMessage = fmt.Sprintf("failed in resolveOneNS: %s", err.Error())
return
}
// Domain name servers at registrar Host
var domainDsRecord []*domainDS
if domainDsRecord, err = resolveDomainDS(domain, registryNameserver, c.options.dnsPort); err != nil {
result.ErrorMessage = fmt.Sprintf("failed in resolveDomainDS: %s", err.Error())
return
}
// Set the records and count
result.Answer.DSRecords = domainDsRecord
result.Answer.DSRecordCount = cap(domainDsRecord)
// Resolve domain DNSKey
var dnsKey []*domainDNSKEY
if dnsKey, err = resolveDomainDNSKEY(domain, domainNameserver, c.options.dnsPort); err != nil {
result.ErrorMessage = fmt.Sprintf("failed in resolveDomainDNSKEY: %s", err.Error())
return
}
// Set the DNSKEY records
result.Answer.DNSKEYRecords = dnsKey
result.Answer.DNSKEYRecordCount = cap(result.Answer.DNSKEYRecords)
// Check the digest type
var digest uint8
if cap(result.Answer.DSRecords) != 0 {
digest = result.Answer.DSRecords[0].DigestType
}
// Check the DS record
if result.Answer.DSRecordCount > 0 && result.Answer.DNSKEYRecordCount > 0 {
var calculatedDS []*domainDS
if calculatedDS, err = calculateDSRecord(domain, domainNameserver, c.options.dnsPort, digest); err != nil {
result.ErrorMessage = fmt.Sprintf("failed in calculateDSRecord: %s", err.Error())
return
}
result.Answer.CalculatedDS = calculatedDS
}
// Resolve the domain NSEC
var nSec *dns.NSEC
if nSec, err = resolveDomainNSEC(domain, c.options.nameServer, c.options.dnsPort); err != nil {
result.ErrorMessage = fmt.Sprintf("failed in resolveDomainNSEC: %s", err.Error())
return
} else if nSec != nil {
result.NSEC.Type = "nsec"
result.NSEC.NSEC = nSec
}
// Resolve the domain NSEC3
var nSec3 *dns.NSEC3
if nSec3, err = resolveDomainNSEC3(domain, c.options.nameServer, c.options.dnsPort); err != nil {
result.ErrorMessage = fmt.Sprintf("failed in resolveDomainNSEC3: %s", err.Error())
return
} else if nSec3 != nil {
result.NSEC.Type = "nsec3"
result.NSEC.NSEC3 = nSec3
}
// Resolve the domain NSEC3PARAM
var nSec3param *dns.NSEC3PARAM
if nSec3param, err = resolveDomainNSEC3PARAM(domain, c.options.nameServer, c.options.dnsPort); err != nil {
result.ErrorMessage = fmt.Sprintf("failed in resolveDomainNSEC3PARAM: %s", err.Error())
return
} else if nSec3param != nil {
result.NSEC.Type = "nsec3param"
result.NSEC.NSEC3PARAM = nSec3param
}
// Check the keys and set the DNSSEC flag
if result.Answer.DSRecordCount > 0 && result.Answer.DNSKEYRecordCount > 0 {
var filtered []*domainDS
var dnsKeys []*domainDNSKEY
for _, e := range result.Answer.DSRecords {
for i, f := range result.Answer.CalculatedDS {
if f.Digest == e.Digest {
filtered = append(filtered, f)
dnsKeys = append(dnsKeys, result.Answer.DNSKEYRecords[i])
}
}
}
result.Answer.Matching.DS = filtered
result.Answer.Matching.DNSKEY = dnsKeys
result.DNSSEC = true
} else {
result.DNSSEC = false
}
// Complete
return
}
/*
Source: https://github.com/binaryfigments/dnscheck
License: https://github.com/binaryfigments/dnscheck/blob/master/LICENSE
*/
// newDNSMessage will create a new DNS message and fire the exchange request
func newDNSMessage(domain, nameServer, dnsPort string, dnsType uint16) (*dns.Msg, error) {
m := new(dns.Msg)
m.MsgHdr.RecursionDesired = true
m.SetQuestion(dns.Fqdn(domain), dnsType)
m.SetEdns0(4096, true)
c := new(dns.Client)
in, _, err := c.Exchange(m, nameServer+":"+dnsPort)
if err != nil {
return nil, err
}
return in, nil
}
// resolveOneNS will resolve one name server
func resolveOneNS(domain, nameServer, dnsPort string) (string, error) {
// Fire the request
msg, err := newDNSMessage(domain, nameServer, dnsPort, dns.TypeNS)
if err != nil {
return "", err
}
var ans []string
for _, ain := range msg.Answer {
if a, ok := ain.(*dns.NS); ok {
ans = append(ans, a.Ns)
}
}
if len(ans) < 1 || ans == nil {
return "", err
}
return ans[0], nil
}
// resolveDomainNSEC will resolve a domain NSEC
func resolveDomainNSEC(domain, nameServer, dnsPort string) (*dns.NSEC, error) {
// Fire the request
msg, err := newDNSMessage(domain, nameServer, dnsPort, dns.TypeNSEC)
if err != nil {
return nil, err
}
var ans *dns.NSEC
for _, ain := range msg.Answer {
if a, ok := ain.(*dns.NSEC); ok {
ans = a
return ans, nil
}
}
return nil, nil
}
// resolveDomainNSEC3 will resolve a domain NSEC3
func resolveDomainNSEC3(domain, nameServer, dnsPort string) (*dns.NSEC3, error) {
// Fire the request
msg, err := newDNSMessage(domain, nameServer, dnsPort, dns.TypeNSEC3)
if err != nil {
return nil, err
}
var ans *dns.NSEC3
for _, ain := range msg.Answer {
if a, ok := ain.(*dns.NSEC3); ok {
ans = a
return ans, nil
}
}
return nil, nil
}
// resolveDomainNSEC3PARAM will resolve a domain NSEC3PARAM
func resolveDomainNSEC3PARAM(domain, nameServer, dnsPort string) (*dns.NSEC3PARAM, error) {
// Fire the request
msg, err := newDNSMessage(domain, nameServer, dnsPort, dns.TypeNSEC3PARAM)
if err != nil {
return nil, err
}
var ans *dns.NSEC3PARAM
for _, ain := range msg.Answer {
if a, ok := ain.(*dns.NSEC3PARAM); ok {
ans = a
return ans, nil
}
}
return nil, nil
}
// resolveDomainDS will resolve a domain DS
func resolveDomainDS(domain, nameServer, dnsPort string) ([]*domainDS, error) {
var ds []*domainDS
// Fire the request
msg, err := newDNSMessage(domain, nameServer, dnsPort, dns.TypeDS)
if err != nil {
return ds, err
}
for _, ain := range msg.Answer {
if a, ok := ain.(*dns.DS); ok {
readKey := &domainDS{
Algorithm: a.Algorithm,
Digest: a.Digest,
DigestType: a.DigestType,
KeyTag: a.KeyTag,
}
ds = append(ds, readKey)
}
}
return ds, nil
}
// resolveDomainDNSKEY will resolve a domain DNSKEY
func resolveDomainDNSKEY(domain, nameServer, dnsPort string) ([]*domainDNSKEY, error) {
var dnskey []*domainDNSKEY
// Fire the request
msg, err := newDNSMessage(domain, nameServer, dnsPort, dns.TypeDNSKEY)
if err != nil {
return dnskey, err
}
for _, ain := range msg.Answer {
if a, ok := ain.(*dns.DNSKEY); ok {
readKey := &domainDNSKEY{
Algorithm: a.Algorithm,
Flags: a.Flags,
Protocol: a.Protocol,
PublicKey: a.PublicKey,
}
dnskey = append(dnskey, readKey)
}
}
return dnskey, err
}
// calculateDSRecord function for generating DS records from the DNSKEY
// Input: domain, digest and name server from the host
// Output: one of more structs with DS information
func calculateDSRecord(domain, nameServer, dnsPort string, digest uint8) ([]*domainDS, error) {
var calculatedDS []*domainDS
// Fire the request
msg, err := newDNSMessage(domain, nameServer, dnsPort, dns.TypeDNSKEY)
if err != nil {
return calculatedDS, err
}
for _, ain := range msg.Answer {
if a, ok := ain.(*dns.DNSKEY); ok {
calculatedKey := &domainDS{
Algorithm: a.ToDS(digest).Algorithm,
Digest: a.ToDS(digest).Digest,
DigestType: a.ToDS(digest).DigestType,
KeyTag: a.ToDS(digest).KeyTag,
}
calculatedDS = append(calculatedDS, calculatedKey)
}
}
return calculatedDS, nil
}