From d371245037bf26f0e8af3307bcfd4bd61cb16ae7 Mon Sep 17 00:00:00 2001 From: Delta-Sierra Date: Thu, 18 Apr 2024 12:57:53 +0200 Subject: [PATCH 1/2] add deploy relationship --- relationships/definition.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/relationships/definition.json b/relationships/definition.json index 396a626..77e0e2e 100644 --- a/relationships/definition.json +++ b/relationships/definition.json @@ -1748,7 +1748,23 @@ ], "name": "is-acquired-by", "opposite": "acquires" + }, + { + "description": "The source object deploys the target object.", + "format": [ + "misp" + ], + "name": "deploys", + "opposite": "is-deployed-by" + }, + { + "description": "The source object is deployed by the target object.", + "format": [ + "misp" + ], + "name": "is-deployed-by", + "opposite": "deploys" } ], - "version": 41 + "version": 42 } From b65199716fe712c44b4514175dd6929f8af19a0a Mon Sep 17 00:00:00 2001 From: Delta-Sierra Date: Fri, 19 Apr 2024 13:22:18 +0200 Subject: [PATCH 2/2] Moar relationships --- relationships/definition.json | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/relationships/definition.json b/relationships/definition.json index a8fc888..233e428 100644 --- a/relationships/definition.json +++ b/relationships/definition.json @@ -1819,7 +1819,30 @@ ], "name": "is-deployed-by", "opposite": "deploys" + }, + { + "description": "The source object interacts with the target object.", + "format": [ + "misp" + ], + "name": "interacts-with" + }, + { + "description": "The source object injects the target object.", + "format": [ + "misp" + ], + "name": "injects", + "opposite": "is-injected-by" + }, + { + "description": "The source object is injected by the target object.", + "format": [ + "misp" + ], + "name": "is-injected-by", + "opposite": "injects" } ], - "version": 45 -} \ No newline at end of file + "version": 46 +}