-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_domains.json
More file actions
59 lines (58 loc) · 1.27 KB
/
example_domains.json
File metadata and controls
59 lines (58 loc) · 1.27 KB
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
{
"domains": [
{
"domain": "www.apple.com",
"description": "sample subdomain to check for certs",
"cert_checks": true,
"dns_checks": false
},
{
"domain": "apple.com",
"description": "top domain to check for DNS flaws",
"cert_checks": false,
"dns_checks": true
},
{
"domain": "www.cloudflare.com",
"description": "website domain for cert checks",
"cert_checks": true,
"dns_checks": false
},
{
"domain": "www.microsoft.com",
"description": "Let's see how Microsoft Domain is configured",
"cert_checks": true,
"dns_checks": false
},
{
"domain": "microsoft.com",
"description": "Checking DNS Mail Stuff of MS",
"cert_checks": false,
"dns_checks": true
},
{
"domain": "badssl.com",
"description": "No SPF expected",
"cert_checks": false,
"dns_checks": true
},
{
"domain": "self-signed.badssl.com",
"description": "untrusted Cert expected",
"cert_checks": true,
"dns_checks": false
},
{
"domain": "non-existent-with-cert-checks-enabled.com",
"description": "test NX domain",
"cert_checks": true,
"dns_checks": false
},
{
"domain": "non-existent-with-dns-checks-enabled.com",
"description": "test NX domain",
"cert_checks": false,
"dns_checks": true
}
]
}