{% extends "analysis_plugins/general_information.html" %}
{% block analysis_result_details %}
{% set analysis_result = firmware.processed_analysis[selected_analysis] | split_user_and_password_type %}
{% for key in analysis_result | sort %}
|
{{ key }}
|
{% for password_type in analysis_result[key] %}
|
{{password_type}}
|
{% for item in analysis_result[key][password_type] | sort %}
{% if item not in ["log", "cracked"] %}
|
{{ item }}
|
{{ analysis_result[key][password_type][item] }}
|
{% endif%}
{% endfor %}
|
{% endfor %}
|
{% endfor %}
{% endblock %}