From d95a4ea3c7cd8d3d3ed478051df8e763b1793c95 Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Mon, 8 Feb 2016 17:04:43 +0100 Subject: [PATCH] Simple README added --- README.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..ea06bb5 --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +# misp-objects + +MISP objects to be used in MISP (3.0) system and can be used by other information sharing tool + +~~~~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": { + "misp-object": "ip-dst", + "misp-usage-frequency": 1, + "categories": ["Network activity","External analysis"] + }, + "domain": { + "misp-object": "domain", + "misp-usage-frequency": 1, + "categories": ["Network activity","External analysis"] + }, + "first-seen": { + "misp-object": "datetime", + "misp-usage-frequency": 0 + }, + "last-seen": { + "misp-object": "datetime", + "misp-usage-frequency": 0 + } + + }, + "required": ["ip","domain"] +} +~~~~