-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathdefinition.json
More file actions
136 lines (136 loc) · 3.52 KB
/
definition.json
File metadata and controls
136 lines (136 loc) · 3.52 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"requiredOneOf": [
"post",
"archive",
"url",
"link",
"attachment"
],
"attributes": {
"post": {
"description": "Raw post",
"ui-priority": 1,
"misp-attribute": "text"
},
"title": {
"description": "Title of the post",
"ui-priority": 1,
"misp-attribute": "text"
},
"url": {
"description": "Original URL location of the microblog post (potentially malicious)",
"ui-priority": 1,
"multiple": true,
"misp-attribute": "url"
},
"link": {
"description": "Original link into the microblog post (Supposed harmless)",
"ui-priority": 1,
"misp-attribute": "link",
"multiple": true,
"to_ids": false
},
"archive": {
"description": "Archive of the original document (Internet Archive, Archive.is, etc).",
"ui-priority": 1,
"multiple": true,
"misp-attribute": "link"
},
"attachment": {
"description": "The microblog post file or screen capture.",
"ui-priority": 1,
"multiple": true,
"misp-attribute": "attachment"
},
"type": {
"description": "Type of the microblog post",
"ui-priority": 1,
"misp-attribute": "text",
"disable_correlation": true,
"sane_default": [
"Twitter",
"Facebook",
"LinkedIn",
"Reddit",
"Google+",
"Instagram",
"Forum",
"Other"
]
},
"state": {
"misp-attribute": "text",
"ui-priority": 0,
"description": "State of the microblog post",
"disable_correlation": true,
"values_list": [
"Informative",
"Malicious",
"Misinformation",
"Disinformation",
"Unknown"
]
},
"username": {
"description": "Username who posted the microblog post (without the @ prefix)",
"ui-priority": 0,
"misp-attribute": "text"
},
"verified-username": {
"description": "Is the username account verified by the operator of the microblog platform",
"ui-priority": 0,
"misp-attribute": "text",
"disable_correlation": true,
"values_list": [
"Verified",
"Unverified",
"Unknown"
]
},
"creation-date": {
"description": "Initial creation of the microblog post",
"ui-priority": 0,
"misp-attribute": "datetime"
},
"modification-date": {
"description": "Last update of the microblog post",
"ui-priority": 0,
"misp-attribute": "datetime"
},
"embedded-link": {
"description": "Link into the microblog post",
"ui-priority": 0,
"misp-attribute": "url",
"multiple": true
},
"embedded-safe-link": {
"description": "Safe link into the microblog post",
"ui-priority": 0,
"misp-attribute": "link",
"multiple": true,
"to_ids": false
},
"removal-date": {
"description": "When the microblog post was removed",
"ui-priority": 0,
"misp-attribute": "datetime"
},
"username-quoted": {
"description": "Username who are quoted into the microblog post",
"ui-priority": 0,
"multiple": true,
"misp-attribute": "text"
},
"hashtag": {
"description": "Hashtag into the microblog post",
"ui-priority": 0,
"misp-attribute": "text",
"multiple": true
}
},
"version": 18,
"description": "Microblog post like a Twitter tweet or a post on a Facebook wall.",
"meta-category": "misc",
"uuid": "8ec8c911-ddbe-4f5b-895b-fbff70c42a60",
"name": "microblog"
}