mirror of https://github.com/MISP/misp-objects
chg: [process] disable correlation where it's not required
parent
12166166f2
commit
9735995ba1
|
@ -3,7 +3,7 @@
|
||||||
"uuid": "02aeef94-ac23-455c-addb-731757ceafb5",
|
"uuid": "02aeef94-ac23-455c-addb-731757ceafb5",
|
||||||
"meta-category": "misc",
|
"meta-category": "misc",
|
||||||
"description": "Object describing a system process.",
|
"description": "Object describing a system process.",
|
||||||
"version": 1,
|
"version": 2,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"creation-time": {
|
"creation-time": {
|
||||||
"description": "Local date/time at which the process was created.",
|
"description": "Local date/time at which the process was created.",
|
||||||
|
@ -25,24 +25,28 @@
|
||||||
"pid": {
|
"pid": {
|
||||||
"description": "Process ID of the process.",
|
"description": "Process ID of the process.",
|
||||||
"ui-priority": 1,
|
"ui-priority": 1,
|
||||||
"misp-attribute": "text"
|
"misp-attribute": "text",
|
||||||
|
"disable_correlation": true
|
||||||
},
|
},
|
||||||
"parent-pid": {
|
"parent-pid": {
|
||||||
"description": "Process ID of the parent process.",
|
"description": "Process ID of the parent process.",
|
||||||
"ui-priority": 1,
|
"ui-priority": 1,
|
||||||
"misp-attribute": "text"
|
"misp-attribute": "text",
|
||||||
|
"disable_correlation": true
|
||||||
},
|
},
|
||||||
"child-pid": {
|
"child-pid": {
|
||||||
"description": "Process ID of the child(ren) process.",
|
"description": "Process ID of the child(ren) process.",
|
||||||
"ui-priority": 1,
|
"ui-priority": 1,
|
||||||
"misp-attribute": "text",
|
"misp-attribute": "text",
|
||||||
"multiple": true
|
"multiple": true,
|
||||||
|
"disable_correlation": true
|
||||||
},
|
},
|
||||||
"port": {
|
"port": {
|
||||||
"description": "Port(s) owned by the process.",
|
"description": "Port(s) owned by the process.",
|
||||||
"ui-priority": 1,
|
"ui-priority": 1,
|
||||||
"misp-attribute": "src-port",
|
"misp-attribute": "src-port",
|
||||||
"multiple": true
|
"multiple": true,
|
||||||
|
"disable_correlation": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"requiredOneOf": [
|
"requiredOneOf": [
|
||||||
|
|
Loading…
Reference in New Issue