mirror of https://github.com/MISP/misp-objects
Some updates including description of fields
parent
94b9bc9aee
commit
9b55a361ec
|
@ -2,7 +2,7 @@
|
||||||
"name": "netflow",
|
"name": "netflow",
|
||||||
"uuid": "bf148c58-3e7e-414e-8de8-5d96379ca77e",
|
"uuid": "bf148c58-3e7e-414e-8de8-5d96379ca77e",
|
||||||
"meta-category": "network",
|
"meta-category": "network",
|
||||||
"description": "An object that encapsulates a netflow incicating or relating, for example, to an incident",
|
"description": "Netflow object describes an network object based on the Netflowv5/v9 minimal definition",
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"attributes": {
|
"attributes": {
|
||||||
"ip-dst": {
|
"ip-dst": {
|
||||||
|
@ -11,7 +11,8 @@
|
||||||
"categories": [
|
"categories": [
|
||||||
"Network activity",
|
"Network activity",
|
||||||
"External analysis"
|
"External analysis"
|
||||||
]
|
],
|
||||||
|
"description": "IP address destination of the netflow"
|
||||||
},
|
},
|
||||||
"ip-src": {
|
"ip-src": {
|
||||||
"misp-attribute": "ip-src",
|
"misp-attribute": "ip-src",
|
||||||
|
@ -19,7 +20,8 @@
|
||||||
"categories": [
|
"categories": [
|
||||||
"Network activity",
|
"Network activity",
|
||||||
"External analysis"
|
"External analysis"
|
||||||
]
|
],
|
||||||
|
"description": "IP address source of the netflow"
|
||||||
},
|
},
|
||||||
"dst-port": {
|
"dst-port": {
|
||||||
"description": "Destination port of the netflow",
|
"description": "Destination port of the netflow",
|
||||||
|
@ -46,7 +48,8 @@
|
||||||
"categories": [
|
"categories": [
|
||||||
"Network activity",
|
"Network activity",
|
||||||
"External analysis"
|
"External analysis"
|
||||||
]
|
],
|
||||||
|
"description": "TCP flags of the flow"
|
||||||
},
|
},
|
||||||
"icmp-type": {
|
"icmp-type": {
|
||||||
"misp-attribute": "text",
|
"misp-attribute": "text",
|
||||||
|
@ -55,22 +58,25 @@
|
||||||
"categories": [
|
"categories": [
|
||||||
"Network activity",
|
"Network activity",
|
||||||
"External analysis"
|
"External analysis"
|
||||||
]
|
],
|
||||||
|
"description": "ICMP type of the flow (if the traffic is ICMP)"
|
||||||
},
|
},
|
||||||
"ip-protocol-number": {
|
"ip-protocol-number": {
|
||||||
"misp-attribute": "size-in-bytes",
|
"misp-attribute": "size-in-bytes",
|
||||||
"ui-priority": 0,
|
"ui-priority": 0,
|
||||||
"disable_correlation": true
|
"disable_correlation": true,
|
||||||
|
"description": "IP protocol number of this flow"
|
||||||
},
|
},
|
||||||
"protocol": {
|
"protocol": {
|
||||||
"misp-attribute": "text",
|
"misp-attribute": "text",
|
||||||
"ui-priority": 0,
|
"ui-priority": 0,
|
||||||
"required_value": [
|
"values_list": [
|
||||||
"TCP",
|
"TCP",
|
||||||
"UDP",
|
"UDP",
|
||||||
"ICMP",
|
"ICMP",
|
||||||
"IP"
|
"IP"
|
||||||
]
|
],
|
||||||
|
"description": "Protocol used for this flow"
|
||||||
},
|
},
|
||||||
"src-as": {
|
"src-as": {
|
||||||
"misp-attribute": "AS",
|
"misp-attribute": "AS",
|
||||||
|
@ -78,7 +84,8 @@
|
||||||
"categories": [
|
"categories": [
|
||||||
"Network activity",
|
"Network activity",
|
||||||
"External analysis"
|
"External analysis"
|
||||||
]
|
],
|
||||||
|
"description": "Source AS number for this flow"
|
||||||
},
|
},
|
||||||
"dst-as": {
|
"dst-as": {
|
||||||
"misp-attribute": "AS",
|
"misp-attribute": "AS",
|
||||||
|
@ -86,12 +93,14 @@
|
||||||
"categories": [
|
"categories": [
|
||||||
"Network activity",
|
"Network activity",
|
||||||
"External analysis"
|
"External analysis"
|
||||||
]
|
],
|
||||||
|
"description": "Destination AS number for this flow"
|
||||||
},
|
},
|
||||||
"ip_version": {
|
"ip_version": {
|
||||||
"misp-attribute": "counter",
|
"misp-attribute": "counter",
|
||||||
"ui-priority": 0,
|
"ui-priority": 0,
|
||||||
"disable_correlation": true
|
"disable_correlation": true,
|
||||||
|
"description": "IP version of this flow"
|
||||||
},
|
},
|
||||||
"direction": {
|
"direction": {
|
||||||
"misp-attribute": "text",
|
"misp-attribute": "text",
|
||||||
|
@ -100,30 +109,36 @@
|
||||||
"sane_default": [
|
"sane_default": [
|
||||||
"Ingress",
|
"Ingress",
|
||||||
"Egress"
|
"Egress"
|
||||||
]
|
],
|
||||||
|
"direction": "Direction of this flow"
|
||||||
},
|
},
|
||||||
"flow-count": {
|
"flow-count": {
|
||||||
"misp-attribute": "counter",
|
"misp-attribute": "counter",
|
||||||
"ui-priority": 0,
|
"ui-priority": 0,
|
||||||
"disable_correlation": true
|
"disable_correlation": true,
|
||||||
|
"description": "Flows counted in this flow"
|
||||||
},
|
},
|
||||||
"packet-count": {
|
"packet-count": {
|
||||||
"misp-attribute": "counter",
|
"misp-attribute": "counter",
|
||||||
"ui-priority": 0,
|
"ui-priority": 0,
|
||||||
"disable_correlation": true
|
"disable_correlation": true,
|
||||||
|
"description": "Packets counted in this flow"
|
||||||
},
|
},
|
||||||
"byte-count": {
|
"byte-count": {
|
||||||
"misp-attribute": "counter",
|
"misp-attribute": "counter",
|
||||||
"ui-priority": 0,
|
"ui-priority": 0,
|
||||||
"disable_correlation": true
|
"disable_correlation": true,
|
||||||
|
"description": "Bytes counted in this flow"
|
||||||
},
|
},
|
||||||
"first-packet-seen": {
|
"first-packet-seen": {
|
||||||
"misp-attribute": "datetime",
|
"misp-attribute": "datetime",
|
||||||
"ui-priority": 1
|
"ui-priority": 1,
|
||||||
|
"description": "First packet seen in this flow"
|
||||||
},
|
},
|
||||||
"last-packet-seen": {
|
"last-packet-seen": {
|
||||||
"misp-attribute": "datetime",
|
"misp-attribute": "datetime",
|
||||||
"ui-priority": 0
|
"ui-priority": 0,
|
||||||
|
"description": "Last packet seen in this flow"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"requiredOneOf": [
|
"requiredOneOf": [
|
||||||
|
|
Loading…
Reference in New Issue