mirror of https://github.com/MISP/misp-objects
fix: improve ip-port object to add domain instead of IP address
parent
c57b9b867c
commit
41b0d33ab3
|
@ -1,9 +1,8 @@
|
||||||
{
|
{
|
||||||
"requiredOneOf": [
|
"requiredOneOf": [
|
||||||
"dst-port",
|
"dst-port",
|
||||||
"src-port"
|
"src-port",
|
||||||
],
|
"domain",
|
||||||
"required": [
|
|
||||||
"ip"
|
"ip"
|
||||||
],
|
],
|
||||||
"attributes": {
|
"attributes": {
|
||||||
|
@ -43,6 +42,15 @@
|
||||||
"ui-priority": 1,
|
"ui-priority": 1,
|
||||||
"misp-attribute": "port"
|
"misp-attribute": "port"
|
||||||
},
|
},
|
||||||
|
"domain": {
|
||||||
|
"description": "Domain",
|
||||||
|
"categories": [
|
||||||
|
"Network activity",
|
||||||
|
"External analysis"
|
||||||
|
],
|
||||||
|
"ui-priority": 1,
|
||||||
|
"misp-attribute": "domain"
|
||||||
|
},
|
||||||
"ip": {
|
"ip": {
|
||||||
"description": "IP Address",
|
"description": "IP Address",
|
||||||
"categories": [
|
"categories": [
|
||||||
|
@ -53,8 +61,8 @@
|
||||||
"misp-attribute": "ip-dst"
|
"misp-attribute": "ip-dst"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"version": 5,
|
"version": 6,
|
||||||
"description": "An IP address and a port seen as a tuple (or as a triple) in a specific time frame.",
|
"description": "An IP address (or domain) and a port seen as a tuple (or as a triple) in a specific time frame.",
|
||||||
"meta-category": "network",
|
"meta-category": "network",
|
||||||
"uuid": "9f8cea74-16fe-4968-a2b4-026676949ac6",
|
"uuid": "9f8cea74-16fe-4968-a2b4-026676949ac6",
|
||||||
"name": "ip-port"
|
"name": "ip-port"
|
||||||
|
|
Loading…
Reference in New Issue