{% 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) %}
| {{ loop.index - 1 }} |
Matched Rule |
{{ entry['rule'] }} |
| Description |
{{ entry['meta']['description'] }} |
{% if entry.meta.date %}
| Rule Version |
{{ entry['meta']['date'] }} |
{% endif %}
{% if entry.meta.author %}
| Rule Author |
{{ entry['meta']['author'] }}
|
{% endif %}
| Matches |
| offset |
name |
matched value |
{% for offset, name, matched_string in entry['strings'] %}
| 0x{{ '0%x' % offset }} |
{{ name[1:] }} |
{{ matched_string }} |
{% endfor %}
|
{% endif %}
{% endfor %}
{% endblock %}