forked from macar-cm/xarf-schemata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo_dnsbl_unstable.json
72 lines (72 loc) · 1.78 KB
/
info_dnsbl_unstable.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
{"description":"An informational report about an ip address which is (de-)listed on a dnsbl",
"type":"object",
"properties":{
"Reported-From":{
"type":"string",
"format":"email"
},
"Report-ID":{
"type":"string",
"format":"email"
},
"Category":{
"type":"string",
"enum":["info"]
},
"Report-Type":{
"type":"string",
"enum":["dnsbl-listing","dnsbl-listed","dnsbl-delisted"],
"description":"dnsbl-listing: a listing for a given ip address was observed; dnsbl-listed: an ip address has been put on a dnsbl; dnsbl-delisted: an ip-address has been removed from a dnsbl"
},
"User-Agent":{
"type":"string"
},
"Date":{
"type":"string",
"format":"date-time",
"description":"Date when listing was observed, an ip-address/domain has been listed or delisted."
},
"Source":{
"type":"string",
"description":"the ip address or domain which is listed (or delisted)"
},
"Source-Type":{
"type":"string",
"enum":["ipv4","ipv6","ip-address","domain"]
},
"DNSBL-Record":{
"type":"string",
"format":"ip-address",
"optional":true,
"description":"DNS request answer which is usually something like 127.0.0.x"
},
"DNSBL":{
"type":"string",
"format":"uri",
"description":"DNSBL zone, e.g. zen.spamhaus.org"
},
"Attachment":{
"type":"string",
"enum":["text/plain"],
"description":"Any further information if available",
"optional":true
},
"Schema-URL":{
"type":"string",
"format":"uri"
},
"Version":{
"type":"number",
"optional":true
},
"Occurrences":{
"type":"integer",
"optional":true
},
"TLP":{
"type":"string",
"enum":["white","green","amber","red"],
"optional":true
}
}
}