├── LICENSE
├── README.md
├── misp-stix.png
├── misp-to-stix-translation.png
└── stix-to-misp-translation.png
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2022 fovea-research
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # STIX/MISP Security Playbook Object Conversion
2 |
3 | **This repository provides a mapping table and a reference process that allows converting between STIX 2.1 Course of Action objects that make use of the [Security Playbook extension](https://github.com/fovea-research/stix2.1-coa-playbook-extension) and [MISP Security Playbook objects](https://github.com/MISP/misp-objects/blob/main/objects/security-playbook/definition.json).**
4 |
5 | Machine-readable `security playbook` objects are used to manage, store, and share cybersecurity playbooks and orchestration workflows and can integrate with other machine-readable Cyber Threat Intelligence (CTI) objects to provide additional context and, consequently, support cybersecurity automation.
6 |
7 |
8 |
9 |
10 |
11 | * Sharing cybersecurity playbooks using STIX 2.1 has been proposed, developed, and documented in the following GitHub repository
12 | (https://github.com/fovea-research/stix2.1-coa-playbook-extension). In particular, the STIX 2.1 Extension Definition mechanism was used to extend the Course of Action SDO type to support including descriptive metadata about playbooks and "encapsulate" cybersecurity playbooks for sharing purposes.
13 |
14 | * Sharing cybersecurity playbooks using MISP motivated the development of a security-playbook object and was made available in the official MISP Project GitHub
15 | (https://github.com/MISP/misp-objects/blob/main/objects/security-playbook/definition.json).
16 |
17 | This repository provides a mapping table that allows converting between `STIX 2.1 Course of Action objects that make use of the Security Playbook extension` and `MISP Security Playbook objects`. Specifically, the mapping table associates the properties that comprise a security playbook extension using the STIX 2.1 COA SDO and the attributes that comprise a MISP security playbook object. In addition we recommend implementers to follow the conversion process below to minimize losing information during the conversion process.
18 |
19 | More information about the data types of the properties/attributes which their knowledge is necessitated to perform conversions from one standard to another can be found in the following repositories.
20 |
21 | - [STIX 2.1 Course of Action - Security Playbook extension](https://github.com/fovea-research/stix2.1-coa-playbook-extension)
22 | - [MISP Security Playbook object template](https://github.com/MISP/misp-objects/blob/main/objects/security-playbook/definition.json)
23 |
24 | We understand that their inclusion in the table below would help engineers to codify it faster, but it creates an unwanted overhead in the maintenance of this repository as every time a change is made in one of the other two repositories (STIX/MISP Object templates hosted in different repositories) it would also require to reflect the changes here.
25 |
26 | A reference conversion process is as follows:
27 |
28 | * From STIX 2.1 Course of Action object with Security Playbook extension to MISP Security Playbook object:
29 |
30 |
31 |
32 |
33 | * From MISP Security Playbook object to STIX 2.1 Course of Action object with Security Playbook extension:
34 |
35 |
36 |
37 |
38 | ### Mapping between STIX 2.1 Security Playbook extension and MISP Security Playbook object template
39 | |STIX Property Name| MISP Attribute Name |
40 | | :--- | :--- |
41 | |**playbook_id**| **playbook-id**|
42 | |**description**| **description**|
43 | | **created**| **-**|
44 | | **modified**|**-**|
45 | | **revoked**| **revoked**|
46 | | **playbook_creation_time**| **playbook-creation-time**|
47 | | **playbook_modification_time**| **playbook-modification-time**|
48 | | **playbook_valid_from**| **playbook-valid-from**|
49 | | **playbook_valid_until**| **playbook-valid-until**|
50 | | **playbook_creator** | **playbook-creator**|
51 | | **labels**| **labels**|
52 | | **organization_type**| **organization-type**|
53 | | **playbook_standard**| **playbook-standard**|
54 | | **playbook_abstraction**| **playbook-abstraction**|
55 | | **playbook_type**| **playbook-type**|
56 | | **playbook_impact**| **playbook-impact**|
57 | | **playbook_severity**| **playbook-severity**|
58 | | **playbook_priority**| **playbook-priority**|
59 | |**-**| **playbook-file**|
60 | | **playbook_bin**| **playbook-base64**|
61 |
62 | ## Acknowledgments
63 | This research was partially supported by the research project JCOP (Grant No. INEA/CEF/ICT/A2020/2373266), funded by the European Health and Digital Executive Agency through the Connected Europe Facility (CEF) program.
64 |
--------------------------------------------------------------------------------
/misp-stix.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cyentific-rni/security-playbook-stix-misp-exchange/e274a49734a322c33571b31b42529dd993089b72/misp-stix.png
--------------------------------------------------------------------------------
/misp-to-stix-translation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cyentific-rni/security-playbook-stix-misp-exchange/e274a49734a322c33571b31b42529dd993089b72/misp-to-stix-translation.png
--------------------------------------------------------------------------------
/stix-to-misp-translation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cyentific-rni/security-playbook-stix-misp-exchange/e274a49734a322c33571b31b42529dd993089b72/stix-to-misp-translation.png
--------------------------------------------------------------------------------