mirror of https://github.com/MISP/misp-objects
fix: [process] change undefined attributes
misp-attributes 'uuid' and 'src-port' do not exist, change those to something else so that we can use this object properlypull/198/head
parent
df8b3c5983
commit
006e792829
|
@ -3,7 +3,7 @@
|
|||
"uuid": "02aeef94-ac23-455c-addb-731757ceafb5",
|
||||
"meta-category": "misc",
|
||||
"description": "Object describing a system process.",
|
||||
"version": 6,
|
||||
"version": 7,
|
||||
"attributes": {
|
||||
"creation-time": {
|
||||
"description": "Local date/time at which the process was created",
|
||||
|
@ -37,7 +37,7 @@
|
|||
"guid": {
|
||||
"description": "The globally unique identifier of the assigned by the vendor product",
|
||||
"ui-priority": 1,
|
||||
"misp-attribute": "uuid"
|
||||
"misp-attribute": "text"
|
||||
},
|
||||
"parent-pid": {
|
||||
"description": "Process ID of the parent process",
|
||||
|
@ -48,7 +48,7 @@
|
|||
"parent-guid": {
|
||||
"description": "The globally unique idenifier of the parent process assigned by the vendor product",
|
||||
"ui-priority": 1,
|
||||
"misp-attribute": "uuid"
|
||||
"misp-attribute": "text"
|
||||
},
|
||||
"child-pid": {
|
||||
"description": "Process ID of the child(ren) process",
|
||||
|
@ -60,7 +60,7 @@
|
|||
"port": {
|
||||
"description": "Port(s) owned by the process",
|
||||
"ui-priority": 1,
|
||||
"misp-attribute": "src-port",
|
||||
"misp-attribute": "port",
|
||||
"multiple": true,
|
||||
"disable_correlation": true
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue