forked from MISP/misp-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefinition.json
62 lines (62 loc) · 1.56 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
{
"attributes": {
"comment": {
"description": "Comment associated to the shell commands executed.",
"misp-attribute": "text",
"ui-priority": 1
},
"language": {
"description": "Scripting language used for the shell commands executed.",
"disable_correlation": true,
"misp-attribute": "text",
"sane_default": [
"PowerShell",
"VBScript",
"Bash",
"Lua",
"JavaScript",
"AppleScript",
"AWK",
"Python",
"Perl",
"Ruby",
"Winbatch",
"AutoIt",
"PHP"
],
"ui-priority": 9
},
"script": {
"description": "Free text of the script if available which executed the shell commands.",
"misp-attribute": "text",
"ui-priority": 10
},
"shell-command": {
"description": "",
"misp-attribute": "text",
"multiple": true,
"ui-priority": 0
},
"state": {
"description": "Known state of the script.",
"disable_correlation": true,
"misp-attribute": "text",
"multiple": true,
"ui-priority": 0,
"values_list": [
"Malicious",
"Unknown",
"Harmless",
"Trusted"
]
}
},
"description": "Object describing a series of shell commands executed. This object can be linked with malicious files in order to describe a specific execution of shell commands.",
"meta-category": "misc",
"name": "shell-commands",
"required": [
"shell-command"
],
"uuid": "fee65efa-eb64-4516-8611-1db76c589f79",
"version": 2
}