forked from MISP/misp-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
definition.json
114 lines (114 loc) · 2.98 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
108
109
110
111
112
113
114
{
"requiredOneOf": [
"name"
],
"attributes": {
"description": {
"description": "Description of the victim",
"ui-priority": 1,
"misp-attribute": "text"
},
"name": {
"description": "The name of the department(s) or organisation(s) targeted.",
"ui-priority": 1,
"misp-attribute": "target-org",
"multiple": true
},
"external": {
"description": "External target organisations affected by this attack.",
"ui-priority": 1,
"misp-attribute": "target-external",
"multiple": true
},
"classification": {
"description": "The type of entity being targeted.",
"misp-attribute": "text",
"disable_correlation": true,
"ui-priority": 1,
"sane_default": [
"individual",
"group",
"organization",
"class",
"unknown"
]
},
"roles": {
"description": "The list of roles targeted within the victim.",
"multiple": true,
"misp-attribute": "text",
"ui-priority": 1
},
"sectors": {
"description": "The list of sectors that the victim belong to",
"multiple": true,
"misp-attribute": "text",
"ui-priority": 1,
"sane_default": [
"agriculture",
"aerospace",
"automotive",
"communications",
"construction",
"defence",
"education",
"energy",
"engineering",
"entertainment",
"financial services",
"government national",
"government regional",
"government local",
"government public services",
"healthcare",
"hospitality leisure",
"infrastructure",
"insurance",
"manufacturing",
"mining",
"non profit",
"pharmaceuticals",
"retail",
"technology",
"telecommunications",
"transportation",
"utilities"
]
},
"regions": {
"description": "The list of regions or locations from the victim targeted. ISO 3166 should be used.",
"multiple": true,
"misp-attribute": "target-location",
"ui-priority": 1
},
"user": {
"description": "The username(s) of the user targeted.",
"misp-attribute": "target-user",
"ui-priority": 1,
"multiple": true
},
"email": {
"description": "The email address(es) of the user targeted.",
"misp-attribute": "target-email",
"ui-priority": 1,
"multiple": true
},
"node": {
"description": "Name(s) of node that was targeted.",
"misp-attribute": "target-machine",
"ui-priority": 1,
"multiple": true
},
"ip-address": {
"description": "IP address(es) of the node targeted.",
"misp-attribute": "ip-dst",
"ui-priority": 1,
"multiple": true
}
},
"version": 4,
"description": "Victim object describes the target of an attack or abuse.",
"meta-category": "misc",
"uuid": "a8806e40-39ad-435f-be02-ac2a13d6fc7d",
"name": "victim"
}