Merge pull request #6878 from Security-Onion-Solutions/fix/scan_pe_sections_entropy

Fix/scan pe sections entropy
This commit is contained in:
Mike Reeves
2022-01-14 17:02:32 -05:00
committed by GitHub
2 changed files with 32 additions and 1 deletions

View File

@@ -244,6 +244,26 @@
"message": { "message": {
"type": "text" "type": "text"
}, },
"scan":{
"type":"object",
"dynamic": true,
"properties":{
"exiftool":{
"type":"text"
},
"pe":{
"properties":{
"sections":{
"properties":{
"entropy":{
"type": "float"
}
}
}
}
}
}
},
"tags": { "tags": {
"type": "keyword", "type": "keyword",
"ignore_above": 1024 "ignore_above": 1024

View File

@@ -734,6 +734,17 @@
"properties":{ "properties":{
"exiftool":{ "exiftool":{
"type":"text" "type":"text"
},
"pe":{
"properties":{
"sections":{
"properties":{
"entropy":{
"type": "float"
}
}
}
}
} }
} }
}, },