new: [infrastructure] infrastructure object added (STIX 2.1 - 4.8)

pull/347/head
Alexandre Dulaunoy 2022-02-14 11:30:09 +01:00
parent 2ca2606252
commit 7dffebe9b6
No known key found for this signature in database
GPG Key ID: 09E2CD4944E6CBCD
2 changed files with 63 additions and 0 deletions

View File

@ -235,6 +235,7 @@ for a specific attribute. An optional **to_ids** boolean field to disable the ID
- [objects/image](https://github.com/MISP/misp-objects/blob/main/objects/image/definition.json) - Object describing an image file.
- [objects/impersonation](https://github.com/MISP/misp-objects/blob/main/objects/impersonation/definition.json) - Represent an impersonating account.
- [objects/imsi-catcher](https://github.com/MISP/misp-objects/blob/main/objects/imsi-catcher/definition.json) - IMSI Catcher entry object based on the open source IMSI cather.
- [objects/infrastructure](https://github.com/MISP/misp-objects/blob/main/objects/infrastructure/definition.json) - The Infrastructure object represents a type of TTP and describes any systems, software services and any associated physical or virtual resources intended to support some purpose (e.g., C2 servers used as part of an attack, device or server that are part of defense, database servers targeted by an attack, etc.). While elements of an attack can be represented by other objects, the Infrastructure object represents a named group of related data that constitutes the infrastructure. STIX 2.1 - 4.8.
- [objects/instant-message](https://github.com/MISP/misp-objects/blob/main/objects/instant-message/definition.json) - Instant Message (IM) object template describing one or more IM message.
- [objects/instant-message-group](https://github.com/MISP/misp-objects/blob/main/objects/instant-message-group/definition.json) - Instant Message (IM) group object template describing a public or private IM group, channel or conversation.
- [objects/intel471-vulnerability-intelligence](https://github.com/MISP/misp-objects/blob/main/objects/intel471-vulnerability-intelligence/definition.json) - Intel 471 vulnerability intelligence object.

View File

@ -0,0 +1,62 @@
{
"attributes": {
"alias": {
"description": "Alternative names used to identify this Infrastructure.",
"misp-attribute": "text",
"ui-priority": 7
},
"description": {
"description": "A description that provides more details and context about the Infrastructure, potentially including its purpose, how it is being used, how it relates to other intelligence activities captured in related objects, and its key characteristics.",
"misp-attribute": "text",
"ui-priority": 9
},
"infrastructure_type": {
"description": "The type of infrastructure being described. The values for this property SHOULD come from the infrastructure-type-ov open vocabulary.",
"disable_correlation": true,
"misp-attribute": "text",
"multiple": true,
"sane_default": [
"amplification",
"anonymization",
"botnet",
"command-and-control",
"exfiltration",
"hosting-malware",
"hosting-target-lists",
"phishing",
"reconnaissance",
"staging",
"unknown"
],
"ui-priority": 8
},
"kill_chain_phases": {
"description": "The list of Kill Chain Phases for which this Infrastructure is used.",
"disable_correlation": true,
"misp-attribute": "text",
"sane_default": [
"(1) Reconnaissance",
"(2) Weaponization",
"(3) Deliver",
"(4) Exploitation",
"(5) Installation",
"(6) Command and Control",
"(7) Actions on objectives"
],
"ui-priority": 6
},
"name": {
"description": "A name or characterizing text used to identify the Infrastructure.",
"misp-attribute": "text",
"ui-priority": 10
}
},
"description": "The Infrastructure object represents a type of TTP and describes any systems, software services and any associated physical or virtual resources intended to support some purpose (e.g., C2 servers used as part of an attack, device or server that are part of defense, database servers targeted by an attack, etc.). While elements of an attack can be represented by other objects, the Infrastructure object represents a named group of related data that constitutes the infrastructure. STIX 2.1 - 4.8",
"meta-category": "misc",
"name": "infrastructure",
"requiredOneOf": [
"name"
],
"uuid": "39d64bd7-1264-4b2e-bdd1-31d1c4b38e6c",
"version": 1
}