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

78 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "elf-section",
"meta-category": "file",
"description": "Object describing a section of an Executable and Linkable Format",
"version": 1,
"attributes": {
2017-03-13 17:58:56 +01:00
"sh_name": {
"misp-attribute": "text",
"misp-usage-frequency": 1,
"disable_correlation": true
},
2017-03-13 17:58:56 +01:00
"sh_flags": {
"misp-attribute": "text",
"misp-usage-frequency": 0,
"sane_default": [
"W (write)",
"A (alloc)",
"X (execute)",
"M (merge)",
"S (strings)",
"I (info)",
"L (link order)",
"O (extra OS processing required)",
"G (group)",
"T (TLS)",
"C (compressed)",
"x (unknown)",
"o (OS specific)",
"E (exclude)",
"l (large)",
"p (processor specific)"
]
},
"text": {
"misp-attribute": "text",
"misp-usage-frequency": 1,
"disable_correlation": true
},
2017-03-13 17:58:56 +01:00
"sh_size": {
"misp-attribute": "size-in-bytes",
"misp-usage-frequency": 1,
"disable_correlation": true
},
"entropy": {
"misp-attribute": "float",
"misp-usage-frequency": 0,
"disable_correlation": true
},
"md5": {
"misp-attribute": "md5",
"misp-usage-frequency": 1
},
"sha1": {
"misp-attribute": "sha1",
"misp-usage-frequency": 0
},
"sha256": {
"misp-attribute": "sha256",
"misp-usage-frequency": 0
},
"sha512": {
"misp-attribute": "sha512",
"misp-usage-frequency": 0
},
"ssdeep": {
"misp-attribute": "ssdeep",
"misp-usage-frequency": 0
}
},
"requiredOneOf": [
"text",
"name",
"sha1",
"sha256",
"sha512"
]
}