{% load analysis_tags %} Signatures {% if analysis.signatures %} {% for signature in analysis.signatures %} {% if signature.severity <= 1 %} {% elif signature.severity == 2 %} {% elif signature.severity >= 3 %} {% endif %} {{signature.description}} {% for match in signature.data %} {% if match.process.process_name %} Process: {{match.process.process_name}} ({{match.process.process_id}}) {% endif %} {% for sign in match.signs %} {% if sign.type == 'api' %} {% include "analysis/behavior/_api_call.html" with call=sign.value %} {% else %} {{sign.type}} {% if sign.value|is_dict %} {% for key, value in sign.value.items %} {{key}}: {{value}} {% endfor %} {% else %} {{sign.value}} {% endif %} {% endif %} {% endfor %} {% endfor %} {% endfor %} {% else %} No signatures {% endif %}
No signatures