forked from MISP/misp-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefinition.json
56 lines (56 loc) · 1.45 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
{
"name": "process",
"uuid": "02aeef94-ac23-455c-addb-731757ceafb5",
"meta-category": "misc",
"description": "Object describing a system process.",
"version": 2,
"attributes": {
"creation-time": {
"description": "Local date/time at which the process was created.",
"ui-priority": 0,
"misp-attribute": "datetime",
"disable_correlation": true
},
"start-time": {
"description": "Local date/time at which the process was started.",
"ui-priority": 0,
"misp-attribute": "datetime",
"disable_correlation": true
},
"name": {
"description": "Name of the process",
"ui-priority": 1,
"misp-attribute": "text"
},
"pid": {
"description": "Process ID of the process.",
"ui-priority": 1,
"misp-attribute": "text",
"disable_correlation": true
},
"parent-pid": {
"description": "Process ID of the parent process.",
"ui-priority": 1,
"misp-attribute": "text",
"disable_correlation": true
},
"child-pid": {
"description": "Process ID of the child(ren) process.",
"ui-priority": 1,
"misp-attribute": "text",
"multiple": true,
"disable_correlation": true
},
"port": {
"description": "Port(s) owned by the process.",
"ui-priority": 1,
"misp-attribute": "src-port",
"multiple": true,
"disable_correlation": true
}
},
"requiredOneOf": [
"name",
"pid"
]
}