misp-objects/objects/pe-section/definition.json

115 lines
2.8 KiB
JSON
Raw Normal View History

2017-03-12 23:06:39 +01:00
{
2017-07-03 12:18:25 +02:00
"requiredOneOf": [
"text",
"name",
2017-08-29 13:25:58 +02:00
"md5",
2017-07-03 12:18:25 +02:00
"sha1",
2017-08-29 13:25:58 +02:00
"sha224",
2017-07-03 12:18:25 +02:00
"sha256",
2017-08-29 13:25:58 +02:00
"sha384",
"sha512",
"sha512/224",
"sha512/256"
2017-07-03 12:18:25 +02:00
],
2017-03-12 23:06:39 +01:00
"attributes": {
2017-08-29 13:25:58 +02:00
"md5": {
"description": "[Insecure] MD5 hash (128 bits)",
"ui-priority": 1,
"misp-attribute": "md5",
"recommended": false
},
"sha1": {
"description": "[Insecure] Secure Hash Algorithm 1 (160 bits)",
"ui-priority": 1,
"misp-attribute": "sha1",
"recommended": false
},
"sha224": {
"description": "Secure Hash Algorithm 2 (224 bits)",
2017-07-03 16:49:43 +02:00
"ui-priority": 0,
2017-08-29 13:25:58 +02:00
"misp-attribute": "sha224",
"recommended": false
},
"sha256": {
"description": "Secure Hash Algorithm 2 (256 bits)",
"ui-priority": 1,
"misp-attribute": "sha256"
},
"sha384": {
"description": "Secure Hash Algorithm 2 (384 bits)",
"ui-priority": 0,
"misp-attribute": "sha384",
"recommended": false
},
"sha512": {
"description": "Secure Hash Algorithm 2 (512 bits)",
"ui-priority": 1,
"misp-attribute": "sha512"
},
"sha512/224": {
"description": "Secure Hash Algorithm 2 (224 bits)",
"ui-priority": 0,
"misp-attribute": "sha512/224",
"recommended": false
},
"sha512/256": {
"description": "Secure Hash Algorithm 2 (256 bits)",
"ui-priority": 0,
"misp-attribute": "sha512/256",
"recommended": false
},
"ssdeep": {
"description": "Fuzzy hash using context triggered piecewise hashes (CTPH)",
"ui-priority": 0,
"misp-attribute": "ssdeep"
},
"entropy": {
"description": "Entropy of the whole section",
"disable_correlation": true,
"ui-priority": 0,
"misp-attribute": "float"
2017-07-03 12:18:25 +02:00
},
2017-03-12 23:06:39 +01:00
"name": {
2017-08-29 13:25:58 +02:00
"description": "Name of the section",
2017-07-03 12:18:25 +02:00
"disable_correlation": true,
"sane_default": [
".rsrc",
".reloc",
".rdata",
".data",
".text"
],
2017-07-03 16:49:43 +02:00
"ui-priority": 1,
2017-07-03 12:18:25 +02:00
"misp-attribute": "text"
2017-03-12 23:06:39 +01:00
},
2017-07-03 12:18:25 +02:00
"size-in-bytes": {
2017-08-29 13:25:58 +02:00
"description": "Size of the section, in bytes",
2017-07-03 12:18:25 +02:00
"disable_correlation": true,
2017-07-03 16:49:43 +02:00
"ui-priority": 1,
2017-07-03 12:18:25 +02:00
"misp-attribute": "size-in-bytes"
2017-03-13 16:33:50 +01:00
},
2017-03-12 23:06:39 +01:00
"text": {
2017-08-29 13:25:58 +02:00
"description": "Free text value to attach to the section",
2017-07-03 12:18:25 +02:00
"disable_correlation": true,
2017-07-03 16:49:43 +02:00
"ui-priority": 1,
2017-08-29 13:25:58 +02:00
"misp-attribute": "text",
"recommended": false
2017-03-12 23:06:39 +01:00
},
2017-08-29 13:25:58 +02:00
"characteristic": {
"description": "Characteristic of the section",
"sane_default": [
"read",
"write",
"executable"
],
2017-07-03 16:49:43 +02:00
"ui-priority": 0,
2017-08-29 13:25:58 +02:00
"misp-attribute": "text"
2017-03-12 23:06:39 +01:00
}
},
2017-08-29 13:25:58 +02:00
"version": 2,
2017-07-03 12:18:25 +02:00
"description": "Object describing a section of a Portable Executable",
"meta-category": "file",
"uuid": "198a17d2-a135-4b25-9a32-5aa4e632014a",
"name": "pe-section"
2017-03-12 23:06:39 +01:00
}