From 006e79282989ecbce8afbf952a44d60129f618a3 Mon Sep 17 00:00:00 2001 From: Pierre-Jean Grenier Date: Tue, 6 Aug 2019 10:39:43 +0200 Subject: [PATCH] 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 properly --- objects/process/definition.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/objects/process/definition.json b/objects/process/definition.json index 2d51789..9e3146b 100644 --- a/objects/process/definition.json +++ b/objects/process/definition.json @@ -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 },