From b9d16a38ad7ee2f904d7eb4812b28de86495bf95 Mon Sep 17 00:00:00 2001 From: Deborah Servili Date: Tue, 10 Sep 2019 16:15:40 +0200 Subject: [PATCH] draft command object --- objects/command-line/definition.json | 20 ++++++++++++++++++++ objects/command/definition.json | 19 +++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 objects/command-line/definition.json create mode 100644 objects/command/definition.json diff --git a/objects/command-line/definition.json b/objects/command-line/definition.json new file mode 100644 index 0000000..0b11d92 --- /dev/null +++ b/objects/command-line/definition.json @@ -0,0 +1,20 @@ +{ + "attributes": { + "value": { + "description": "", + "ui-priority": 1, + "misp-attribute": "text", + "multiple": true + }, + "description": { + "description": "description of the command", + "ui-priority": 1, + "misp-attribute": "text" + } + }, + "version": 1, + "description": "", + "meta-category": "misc", + "uuid": "88ebe222-d3cc-11e9-875d-7f13f460adaf", + "name": "command-line" +} diff --git a/objects/command/definition.json b/objects/command/definition.json new file mode 100644 index 0000000..6cbb5c7 --- /dev/null +++ b/objects/command/definition.json @@ -0,0 +1,19 @@ +{ + "attributes": { + "command-name": { + "description": "Text used to call the command", + "ui-priority": 1, + "misp-attribute": "text" + }, + "functionality": { + "description": "Functionality of the command", + "ui-priority": 1, + "misp-attribute": "text" + } + }, + "version": 1, + "description": "Command", + "meta-category": "misc", + "uuid": "21ad70d8-d397-11e9-9ea7-43b2d5f6a6e3", + "name": "command" +}