mirror of https://github.com/MISP/misp-objects
fixed av-signature merge conflicts with upstream
commit
6e36c162a4
|
@ -130,9 +130,22 @@
|
||||||
"disable_correlation": true,
|
"disable_correlation": true,
|
||||||
"ui-priority": 0,
|
"ui-priority": 0,
|
||||||
"misp-attribute": "text"
|
"misp-attribute": "text"
|
||||||
|
},
|
||||||
|
"state": {
|
||||||
|
"misp-attribute": "text",
|
||||||
|
"ui-priority": 0,
|
||||||
|
"description": "State of the file",
|
||||||
|
"multiple": true,
|
||||||
|
"values_list": [
|
||||||
|
"Harmless",
|
||||||
|
"Signed",
|
||||||
|
"Revoked",
|
||||||
|
"Expired",
|
||||||
|
"Trusted"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"version": 3,
|
"version": 4,
|
||||||
"description": "File object describing a file with meta-information",
|
"description": "File object describing a file with meta-information",
|
||||||
"meta-category": "file",
|
"meta-category": "file",
|
||||||
"uuid": "688c46fb-5edb-40a3-8273-1af7923e2215",
|
"uuid": "688c46fb-5edb-40a3-8273-1af7923e2215",
|
||||||
|
|
|
@ -87,7 +87,7 @@ def asciidoc(content=False, adoc=None, t='title',title=''):
|
||||||
disableCorrelation = 'icon:check[] '
|
disableCorrelation = 'icon:check[] '
|
||||||
if 'description' in content['attributes'][v]:
|
if 'description' in content['attributes'][v]:
|
||||||
if content['attributes'][v]['description']:
|
if content['attributes'][v]['description']:
|
||||||
values = ''
|
description = '{}'.format(content['attributes'][v]['description'])
|
||||||
if 'values_list' in content['attributes'][v]:
|
if 'values_list' in content['attributes'][v]:
|
||||||
values = content['attributes'][v]['values_list']
|
values = content['attributes'][v]['values_list']
|
||||||
description = '{} {}'.format(content['attributes'][v]['description'],values)
|
description = '{} {}'.format(content['attributes'][v]['description'],values)
|
||||||
|
|
Loading…
Reference in New Issue