def _buff_yara_make_html(content):
"""
Create part with YARA results
"""
decode_content = json.loads(content)
html = "<div>"
for cont in decode_content:
html += (
"<label class=\"label label-info\">{}</label> : strings {}"
).format(escape(cont['name']),
escape(", ".join(cont['strings'])))
html += "<br/>{}".format(cont['meta']['description'])
html += "</div>"
return html
评论列表
文章目录