{% extends "analysis_plugins/general_information.html" %} {% block analysis_result_details %} {% for key, entry in firmware.processed_analysis[selected_analysis].items() %} {% if key | is_not_mandatory_analysis_entry %} {% set row_count = 3 + (1 if entry.meta.date else 0) + (1 if entry.meta.author else 0) %} {% if entry.meta.date %} {% endif %} {% if entry.meta.author %} {% endif %} {% endif %} {% endfor %} {% endblock %}
{{ loop.index - 1 }} Matched Rule {{ entry['rule'] }}
Description {{ entry['meta']['description'] }}
Rule Version {{ entry['meta']['date'] }}
Rule Author {{ entry['meta']['author'] }}
Matches {% for offset, name, matched_string in entry['strings'] %} {% endfor %}
offset name matched value
0x{{ '0%x' % offset }} {{ name[1:] }} {{ matched_string }}