2016-02-16 07:25:54 +01:00
|
|
|
{
|
2017-07-03 12:14:48 +02:00
|
|
|
"requiredOneOf": [
|
|
|
|
"dst-port",
|
2018-01-31 15:05:55 +01:00
|
|
|
"src-port",
|
|
|
|
"domain",
|
2018-04-10 14:46:36 +02:00
|
|
|
"hostname",
|
2019-04-07 22:28:36 +02:00
|
|
|
"ip",
|
2019-07-05 16:11:31 +02:00
|
|
|
"ip-src",
|
|
|
|
"ip-dst"
|
2017-07-03 12:14:48 +02:00
|
|
|
],
|
2017-02-13 11:18:42 +01:00
|
|
|
"attributes": {
|
2017-07-03 12:14:48 +02:00
|
|
|
"text": {
|
2017-08-29 18:36:46 +02:00
|
|
|
"description": "Description of the tuple",
|
2017-12-05 11:05:56 +01:00
|
|
|
"disable_correlation": true,
|
2017-07-03 16:43:25 +02:00
|
|
|
"ui-priority": 0,
|
2017-07-03 12:14:48 +02:00
|
|
|
"misp-attribute": "text"
|
|
|
|
},
|
|
|
|
"last-seen": {
|
2017-08-29 18:36:46 +02:00
|
|
|
"description": "Last time the tuple has been seen",
|
2017-12-05 11:05:56 +01:00
|
|
|
"disable_correlation": true,
|
2017-07-03 16:43:25 +02:00
|
|
|
"ui-priority": 0,
|
2017-07-03 12:14:48 +02:00
|
|
|
"misp-attribute": "datetime"
|
|
|
|
},
|
|
|
|
"first-seen": {
|
2017-08-29 18:36:46 +02:00
|
|
|
"description": "First time the tuple has been seen",
|
2017-12-05 11:05:56 +01:00
|
|
|
"disable_correlation": true,
|
2017-07-03 16:43:25 +02:00
|
|
|
"ui-priority": 0,
|
2017-07-03 12:14:48 +02:00
|
|
|
"misp-attribute": "datetime"
|
|
|
|
},
|
|
|
|
"src-port": {
|
2017-08-29 18:36:46 +02:00
|
|
|
"description": "Source port",
|
2017-02-13 11:18:42 +01:00
|
|
|
"categories": [
|
|
|
|
"Network activity",
|
|
|
|
"External analysis"
|
2017-07-03 12:14:48 +02:00
|
|
|
],
|
2017-07-03 16:43:25 +02:00
|
|
|
"ui-priority": 0,
|
2017-09-13 16:42:15 +02:00
|
|
|
"misp-attribute": "port"
|
2017-02-13 11:18:42 +01:00
|
|
|
},
|
|
|
|
"dst-port": {
|
2017-08-29 18:36:46 +02:00
|
|
|
"description": "Destination port",
|
2017-02-13 11:18:42 +01:00
|
|
|
"categories": [
|
|
|
|
"Network activity",
|
|
|
|
"External analysis"
|
2017-07-03 12:14:48 +02:00
|
|
|
],
|
2017-07-03 16:43:25 +02:00
|
|
|
"ui-priority": 1,
|
2018-04-10 14:46:36 +02:00
|
|
|
"misp-attribute": "port",
|
|
|
|
"disable_correlation": true,
|
|
|
|
"multiple": true
|
2017-02-13 11:18:42 +01:00
|
|
|
},
|
2018-01-31 15:05:55 +01:00
|
|
|
"domain": {
|
|
|
|
"description": "Domain",
|
|
|
|
"categories": [
|
|
|
|
"Network activity",
|
|
|
|
"External analysis"
|
|
|
|
],
|
|
|
|
"ui-priority": 1,
|
2018-04-10 14:46:36 +02:00
|
|
|
"misp-attribute": "domain",
|
|
|
|
"multiple": true
|
|
|
|
},
|
|
|
|
"hostname": {
|
|
|
|
"description": "Hostname",
|
|
|
|
"categories": [
|
|
|
|
"Network activity",
|
|
|
|
"External analysis"
|
|
|
|
],
|
|
|
|
"ui-priority": 1,
|
|
|
|
"misp-attribute": "hostname",
|
|
|
|
"multiple": true
|
2018-01-31 15:05:55 +01:00
|
|
|
},
|
2017-07-03 12:14:48 +02:00
|
|
|
"ip": {
|
2017-08-29 18:36:46 +02:00
|
|
|
"description": "IP Address",
|
2017-02-13 11:18:42 +01:00
|
|
|
"categories": [
|
|
|
|
"Network activity",
|
|
|
|
"External analysis"
|
2017-07-03 12:14:48 +02:00
|
|
|
],
|
2017-07-03 16:43:25 +02:00
|
|
|
"ui-priority": 1,
|
2018-04-10 14:46:36 +02:00
|
|
|
"misp-attribute": "ip-dst",
|
|
|
|
"multiple": true
|
2019-04-07 22:28:36 +02:00
|
|
|
},
|
|
|
|
"ip-src": {
|
|
|
|
"description": "source IP address",
|
|
|
|
"categories": [
|
|
|
|
"Network activity",
|
|
|
|
"External analysis"
|
|
|
|
],
|
|
|
|
"ui-priority": 1,
|
|
|
|
"misp-attribute": "ip-src",
|
|
|
|
"multiple": true
|
2019-07-05 15:57:11 +02:00
|
|
|
},
|
|
|
|
"ip-dst": {
|
|
|
|
"description": "destination IP address",
|
|
|
|
"categories": [
|
|
|
|
"Network activity",
|
|
|
|
"External analysis"
|
|
|
|
],
|
|
|
|
"ui-priority": 1,
|
|
|
|
"misp-attribute": "ip-dst",
|
|
|
|
"multiple": true
|
2017-02-13 11:18:42 +01:00
|
|
|
}
|
|
|
|
},
|
2019-04-07 22:28:36 +02:00
|
|
|
"version": 8,
|
2018-04-10 14:46:36 +02:00
|
|
|
"description": "An IP address (or domain or hostname) and a port seen as a tuple (or as a triple) in a specific time frame.",
|
2017-07-03 12:14:48 +02:00
|
|
|
"meta-category": "network",
|
|
|
|
"uuid": "9f8cea74-16fe-4968-a2b4-026676949ac6",
|
2017-10-16 11:40:20 +02:00
|
|
|
"name": "ip-port"
|
2016-02-16 07:25:54 +01:00
|
|
|
}
|