fileinfo: add config

This commit is contained in:
Peter Matula 2020-12-11 19:30:24 +01:00
parent 34ac8f9ec3
commit 37dbfd1e07
2 changed files with 27 additions and 0 deletions

View File

@ -134,3 +134,8 @@ set_target_properties(fileinfo
install(TARGETS fileinfo
RUNTIME DESTINATION ${RETDEC_INSTALL_BIN_DIR}
)
install(
FILES "fileinfo-config.json"
DESTINATION ${RETDEC_INSTALL_DATA_DIR}
)

View File

@ -0,0 +1,22 @@
{
// plain|json
"outputFormat": "plain",
// exact|similarity|sim-list
"yaraMatchingType": "exect",
"useInternalSignatureDb": true,
"useExternalSignatureDb": false,
"externalMalwareYaraRules": [
],
"externalCryptoYaraRules": [
],
"externalOtherYaraRules": [
],
"loadStrings": false,
"hashes": ???,
"epBytes": 50,
"verbose": false,
"explanatory": false,
"maxMemory":0,
"maxMemoryHalf": true,
"dlls": ???
}