forked from MISP/misp-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
definition.json
107 lines (107 loc) · 3.1 KB
/
definition.json
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
{
"required": [
"rrtype",
"rrname",
"rdata"
],
"attributes": {
"zone_time_last": {
"description": "Last time that the unique tuple (rrname, rrtype, rdata) record has been seen via master file import.",
"ui-priority": 0,
"misp-attribute": "datetime",
"disable_correlation": true
},
"text": {
"description": "Description of the passive DNS record.",
"ui-priority": 0,
"misp-attribute": "text",
"disable_correlation": true
},
"count": {
"description": "How many authoritative DNS answers were received at the Passive DNS Server's collectors with exactly the given set of values as answers.",
"ui-priority": 0,
"misp-attribute": "counter",
"disable_correlation": true
},
"rrname": {
"description": "Resource Record name of the queried resource.",
"categories": [
"Network activity",
"External analysis"
],
"ui-priority": 1,
"misp-attribute": "text"
},
"rrtype": {
"description": "Resource Record type as seen by the passive DNS.",
"categories": [
"Network activity",
"External analysis"
],
"ui-priority": 1,
"misp-attribute": "text",
"sane_default": [
"A",
"AAAA",
"CNAME",
"PTR",
"SOA",
"TXT",
"DNAME",
"NS",
"SRV",
"RP",
"NAPTR",
"HINFO",
"A6"
],
"disable_correlation": true
},
"rdata": {
"description": "Resource records of the queried resource",
"ui-priority": 1,
"misp-attribute": "text"
},
"zone_time_first": {
"description": "First time that the unique tuple (rrname, rrtype, rdata) record has been seen via master file import",
"ui-priority": 0,
"misp-attribute": "datetime",
"disable_correlation": true
},
"origin": {
"description": "Origin of the Passive DNS response",
"ui-priority": 0,
"misp-attribute": "text",
"disable_correlation": true
},
"time_last": {
"description": "Last time that the unique tuple (rrname, rrtype, rdata) record has been seen by the passive DNS",
"ui-priority": 0,
"misp-attribute": "datetime",
"disable_correlation": true
},
"time_first": {
"description": "First time that the unique tuple (rrname, rrtype, rdata) has been seen by the passive DNS",
"ui-priority": 0,
"misp-attribute": "datetime",
"disable_correlation": true
},
"bailiwick": {
"description": "Best estimate of the apex of the zone where this data is authoritative",
"ui-priority": 0,
"misp-attribute": "text",
"disable_correlation": true
},
"sensor_id": {
"description": "Sensor information where the record was seen",
"ui-priority": 0,
"misp-attribute": "text",
"disable_correlation": true
}
},
"version": 3,
"description": "Passive DNS records as expressed in draft-dulaunoy-dnsop-passive-dns-cof-01",
"meta-category": "network",
"uuid": "b77b7b1c-66ab-4a41-8da4-83810f6d2d6c",
"name": "passive-dns"
}