forked from MISP/misp-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
definition.json
82 lines (82 loc) · 2.35 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
{
"requiredOneOf": [
"text",
"first-seen",
"last-seen",
"origin"
],
"required": [
"type"
],
"attributes": {
"sensor": {
"description": "The AIL sensor uuid where the leak was processed and analysed.",
"ui-priority": 0,
"misp-attribute": "text"
},
"duplicate": {
"description": "Duplicate of the existing leaks.",
"ui-priority": 0,
"misp-attribute": "text",
"multiple": true
},
"duplicate_number": {
"description": "Number of known duplicates.",
"ui-priority": 0,
"misp-attribute": "counter"
},
"origin": {
"description": "The link where the leak is (or was) accessible at first-seen.",
"ui-priority": 1,
"misp-attribute": "text"
},
"text": {
"description": "A description of the leak which could include the potential victim(s) or description of the leak.",
"disable_correlation": true,
"ui-priority": 1,
"misp-attribute": "text"
},
"original-date": {
"description": "When the information available in the leak was created. It's usually before the first-seen.",
"disable_correlation": true,
"ui-priority": 0,
"misp-attribute": "datetime"
},
"type": {
"sane_default": [
"Credential",
"CreditCards",
"Mail",
"Onion",
"Phone",
"Keys"
],
"description": "Type of information leak as discovered and classified by an AIL module.",
"ui-priority": 0,
"misp-attribute": "text"
},
"last-seen": {
"description": "When the leak has been accessible or seen for the last time.",
"disable_correlation": true,
"ui-priority": 0,
"misp-attribute": "datetime"
},
"first-seen": {
"description": "When the leak has been accessible or seen for the first time.",
"disable_correlation": true,
"ui-priority": 0,
"misp-attribute": "datetime"
},
"raw-data": {
"description": "Raw data as received by the AIL sensor compressed and encoded in Base64.",
"disable_correlation": true,
"ui-priority": 0,
"misp-attribute": "attachment"
}
},
"version": 7,
"description": "An information leak as defined by the AIL Analysis Information Leak framework.",
"meta-category": "misc",
"uuid": "dc6a8fa2-0a43-4a0c-a5aa-b1a5336ca80e",
"name": "ail-leak"
}