mirror of https://github.com/MISP/misp-objects
Some updates
parent
d95a4ea3c7
commit
8a1ee8736b
42
README.md
42
README.md
|
@ -1,6 +1,12 @@
|
|||
# misp-objects
|
||||
|
||||
MISP objects to be used in MISP (3.0) system and can be used by other information sharing tool
|
||||
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
|
||||
|
||||
~~~~json
|
||||
{
|
||||
|
@ -33,3 +39,37 @@ MISP objects to be used in MISP (3.0) system and can be used by other informatio
|
|||
"required": ["ip","domain"]
|
||||
}
|
||||
~~~~
|
||||
|
||||
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.
|
||||
|
||||
## 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.
|
||||
|
||||
## 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/>.
|
||||
|
||||
~~~~
|
||||
|
|
Loading…
Reference in New Issue