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

73 lines
1.5 KiB
JSON
Raw Normal View History

2017-03-12 23:06:39 +01:00
{
"name": "pe-section",
"meta-category": "file",
"description": "Object describing a section of a Portable Executable",
"version": 1,
"attributes": {
"name": {
"misp-attribute": "text",
"misp-usage-frequency": 1,
"sane_default": [
".rsrc",
".reloc",
".rdata",
".data",
".text"
],
"disable_correlation": true
2017-03-12 23:06:39 +01:00
},
"characteristics":{
"misp-attributes": "text",
2017-03-13 16:08:27 +01:00
"misp-usage-frequency": 0,
"sane_default":[
"read",
"write",
"executable"
]
}
,
2017-03-12 23:06:39 +01:00
"text": {
"misp-attribute": "text",
"misp-usage-frequency": 1,
"disable_correlation": true
2017-03-12 23:06:39 +01:00
},
"size-in-bytes": {
"misp-attribute": "size-in-bytes",
"misp-usage-frequency": 1,
"disable_correlation": true
2017-03-12 23:06:39 +01:00
},
"entropy": {
"misp-attribute": "float",
"misp-usage-frequency": 0,
"disable_correlation": true
2017-03-12 23:06:39 +01:00
},
"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
2017-03-12 23:06:39 +01:00
}
},
"requiredOneOf": [
"text",
"name",
"sha1",
"sha256",
"sha512"
]
}