Compare commits

...

9 Commits

Author SHA1 Message Date
Alexandre Dulaunoy 1abf2bf705
chg: [relationships] `publishes` added 2024-04-19 14:53:38 +02:00
Alexandre Dulaunoy a2063078e5
fix: [relationships] newline story 2024-04-19 14:42:45 +02:00
Alexandre Dulaunoy 37fe188830
Merge pull request #427 from Delta-Sierra/master
Moar relationships
2024-04-19 14:41:57 +02:00
Alexandre Dulaunoy a176a663d0
Merge pull request #426 from DavidCruciani/main
flowintel-cm notes change
2024-04-19 14:40:47 +02:00
Delta-Sierra b65199716f Moar relationships 2024-04-19 13:22:18 +02:00
David Cruciani b10d4680bc
Merge branch 'MISP:main' into main 2024-04-18 14:40:59 +02:00
David Cruciani 051605763e
chg: [flowintel-cm] notes 2024-04-18 14:40:16 +02:00
Delta-Sierra 845a48a7a4 merge 2024-04-18 13:02:11 +02:00
Delta-Sierra d371245037 add deploy relationship 2024-04-18 12:57:53 +02:00
4 changed files with 99 additions and 9 deletions

View File

@ -42,6 +42,12 @@
"misp-attribute": "datetime",
"ui-priority": 0
},
"notes": {
"description": "Notes of the case",
"disable_correlation": true,
"misp-attribute": "text",
"ui-priority": 0
},
"origin-url": {
"description": "Origin of the case",
"disable_correlation": true,
@ -86,5 +92,5 @@
"meta-category": "misc",
"name": "flowintel-cm-case",
"uuid": "19df57c7-b315-4fd2-84e5-d81ab221425e",
"version": 2
"version": 3
}

View File

@ -0,0 +1,35 @@
{
"attributes": {
"note": {
"description": "Notes of the task",
"disable_correlation": true,
"misp-attribute": "text",
"multiple": true,
"ui-priority": 0
},
"note-uuid": {
"description": "UUID of the note",
"disable_correlation": true,
"misp-attribute": "text",
"ui-priority": 2
},
"origin-url": {
"description": "Origin of the task",
"disable_correlation": true,
"misp-attribute": "url",
"to_ids": false,
"ui-priority": 1
},
"task-uuid": {
"description": "UUID of the parent task",
"disable_correlation": true,
"misp-attribute": "text",
"ui-priority": 2
}
},
"description": "A task's note as defined by flowintel-cm.",
"meta-category": "misc",
"name": "flowintel-cm-task-note",
"uuid": "2c6f6aba-48b6-482f-a810-81934d29be9a",
"version": 1
}

View File

@ -37,12 +37,6 @@
"misp-attribute": "datetime",
"ui-priority": 0
},
"notes": {
"description": "Notes of the task",
"disable_correlation": true,
"misp-attribute": "text",
"ui-priority": 0
},
"origin-url": {
"description": "Origin of the task",
"disable_correlation": true,
@ -88,5 +82,5 @@
"meta-category": "misc",
"name": "flowintel-cm-task",
"uuid": "2f525f6e-d3f2-4cb9-9ca0-f1160d99397d",
"version": 3
"version": 4
}

View File

@ -36,6 +36,22 @@
"name": "shared-by",
"opposite": "shares"
},
{
"description": "This relationship describes an object which publishes another object.",
"format": [
"misp"
],
"name": "publishes",
"opposite": "published-by"
},
{
"description": "This relationship describes an object which was published by another object.",
"format": [
"misp"
],
"name": "published-by",
"opposite": "publishes"
},
{
"description": "The referenced source and target objects are semantically duplicates of each other.",
"format": [
@ -1803,7 +1819,46 @@
"misp"
],
"name": "operates-from"
},
{
"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"
},
{
"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": 44
"version": 47
}