misp-objects/README.md

104 lines
5.3 KiB
Markdown
Raw Normal View History

2016-02-08 17:04:43 +01:00
# misp-objects
2016-02-08 17:34:32 +01:00
MISP objects to be used in MISP (3.0) system and can be used by other information sharing tool. MISP objects
are in addition to MISP attributes to allow advanced combinations of attributes. The creation of these objects
and their associated attributes are based on real cyber security use-cases and existing practices in information sharing.
Feel free to propose your own MISP objects to be included in MISP. The system is similar to the [misp-taxonomies](https://github.com/MISP/misp-taxonomies) where anyone can contribute their own objects to be included in MISP without modifying software.
## Format of MISP objects
2016-02-08 17:04:43 +01:00
~~~~json
{
"name": "domain|ip",
"meta-category": "network",
"description": "A domain and IP address seen as a tuple in a specific time frame.",
"version": 1,
"attributes" :
{
"ip": {
2016-02-08 17:51:47 +01:00
"misp-attribute": "ip-dst",
2016-02-08 17:04:43 +01:00
"misp-usage-frequency": 1,
"categories": ["Network activity","External analysis"]
},
"domain": {
2016-02-08 17:51:47 +01:00
"misp-attribute": "domain",
2016-02-08 17:04:43 +01:00
"misp-usage-frequency": 1,
"categories": ["Network activity","External analysis"]
},
"first-seen": {
2016-02-08 17:51:47 +01:00
"misp-attribute": "datetime",
2016-02-08 17:04:43 +01:00
"misp-usage-frequency": 0
},
"last-seen": {
2016-02-08 17:51:47 +01:00
"misp-attribute": "datetime",
2016-02-08 17:04:43 +01:00
"misp-usage-frequency": 0
}
},
"required": ["ip","domain"]
}
~~~~
2016-02-08 17:34:32 +01:00
A MISP object is described in a simple JSON file containing the following element.
* **name** is the name of the your object.
* **meta-category** is the category where the object falls into. (file, network, financial)
* **description** is a summary of the object description.
* **version** is the version number as a decimal value.
2016-02-08 17:51:47 +01:00
* **required** is an array containing the minimal required attributes to describe the object.
* **requiredOneOf** is an array containing the attributes where at least one need to be present to describe the object.
2016-02-08 17:51:47 +01:00
* **attributes** contains another JSON object listing all the attributes composing the object.
Each attribute must contain a reference **misp-attribute** to reference an existing attribute definition in MISP.
An array **categories** must be used to described in which categories the attribute is. The **misp-usage-frequency**
2016-02-10 09:43:48 +01:00
is describing the usage frequency of an attribute. This helps to only display the most frequently used attributes and
2016-02-08 17:51:47 +01:00
allowing advanced users to show all the attributes depending of their configuration.
2016-02-08 17:34:32 +01:00
## Existing MISP objects
* [objects/domain-ip](objects/domain-ip/definition.json) - A domain and IP address seen as a tuple in a specific time frame.
2016-02-09 21:07:16 +01:00
* [objects/file](objects/file/definition.json) - File object describing a file with meta-information.
* [objects/passive-dns](objects/file/definition.json) - Passive DNS records as expressed in [draft-dulaunoy-dnsop-passive-dns-cof-01](https://tools.ietf.org/html/draft-dulaunoy-dnsop-passive-dns-cof-01).
* [objects/whois](objects/whois/definition.json) - Whois records information for a domain name.
2016-02-08 17:34:32 +01:00
2016-02-10 09:43:48 +01:00
## How to contribute MISP objects?
Fork the project, create a new directory in the [objects directory](objects/) matching your object name. Objects must be composed
of existing MISP attributes. If you are missing a specific attributes, feel free to open an issue in the [MISP project](https://www.github.com/MISP/MISP).
We recommend to add a text attribute in a object to allow users to add comments or correlating text.
When the object is created, pull a request on this project. We usually merge the objects if it fits existing use-cases.
## What are the advantages of MISP objects versus existing standards?
MISP objects are dynamically used objects that are contributed by users of MISP (the threat sharing platform) or other information sharing platforms.
The aim is to allow a dynamic update of objects definition in operational distributed sharing systems like MISP. Security threats and their related indicators are quite dynamic, standardized formats are quite static and new indicators require a significant time before being standardized.
The MISP objects model allows to add new combined indicators format based on their usage without changing the underlying code base of MISP or other threat sharing platform using it. The definition of the objects is then propagated along with the indicators itself.
2016-02-08 17:34:32 +01:00
## License
~~~~
Copyright (C) 2016 Andras Iklody
Copyright (C) 2016 Alexandre Dulaunoy
Copyright (C) 2016 CIRCL - Computer Incident Response Center Luxembourg
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
~~~~