{% extends "analysis_plugins/general_information.html" %} {% block analysis_result_details %} {% set analysis = firmware.processed_analysis[selected_analysis]['Output'] %} {% for key in analysis.keys() | sort %} {{ key }}
{% if analysis[key] | is_list %} {% if not analysis[key] %} {% elif analysis[key][0] is string %} {% for element in analysis[key] %} {% endfor %} {% else %} {% for unique_key in analysis[key] | get_unique_keys_from_list_of_dicts | sort %} {% endfor %} {% for dictionary in analysis[key] %} {% for unique_key in analysis[key] | get_unique_keys_from_list_of_dicts | sort %} {% if unique_key in dictionary.keys() %} {% else %} {% endif %} {% endfor %} {% endfor %} {% endif %} {% elif analysis[key] %} {% for k, v in analysis[key].items() %} {% endfor %} {% endif %}
None
{{ element }}
{{ unique_key }}
{{ dictionary[unique_key] }}
{{ k }} {{ v }}
{% endfor %} {% endblock %}