add: [network-connection] Added bytes & packets count object relations for both the source and destination

pull/387/head
Christian Studer 2023-03-07 16:45:51 +01:00
parent 0e9ae98b49
commit 57beac3bc7
No known key found for this signature in database
GPG Key ID: 6BBED1B63A6D639F
1 changed files with 25 additions and 1 deletions

View File

@ -10,6 +10,18 @@
"misp-attribute": "counter", "misp-attribute": "counter",
"ui-priority": 1 "ui-priority": 1
}, },
"dst-byte-count": {
"description": "Number of bytes sent from the source to the destination.",
"disable_correlation": true,
"misp-attribute": "counter",
"ui-priority": 0
},
"dst-packet-count": {
"description": "Number of packets sent from the source to the destination.",
"disable_correlation": true,
"misp-attribute": "counter",
"ui-priority": 0
},
"dst-port": { "dst-port": {
"categories": [ "categories": [
"Network activity", "Network activity",
@ -101,6 +113,18 @@
"misp-attribute": "mac-address", "misp-attribute": "mac-address",
"ui-priority": 1 "ui-priority": 1
}, },
"src-byte-count": {
"description": "Number of bytes sent from the destination to the source.",
"disable_correlation": true,
"misp-attribute": "counter",
"ui-priority": 0
},
"src-packet-count": {
"description": "Number of packets sent from the destination to the source.",
"disable_correlation": true,
"misp-attribute": "counter",
"ui-priority": 0
},
"src-port": { "src-port": {
"categories": [ "categories": [
"Network activity", "Network activity",
@ -123,5 +147,5 @@
"community-id" "community-id"
], ],
"uuid": "af16764b-f8e5-4603-9de1-de34d272f80b", "uuid": "af16764b-f8e5-4603-9de1-de34d272f80b",
"version": 5 "version": 6
} }