{{ _('File Info') }}
| {{ _('File name') }} | {{ record.display_name }} |
| {{ _('Full path') }} | {{ record.file_path }} |
| {{ _('File size') }} | {{ "%.2f"|format(record.file_size / 1024) }} {{ _('KB') }} |
| {{ _('File status') }} |
{% if record.file_exists %}
{{ _('Present') }}
{% else %}
{{ _('Deleted') }}
{% set missing_labels = {
'deleted-on-disk': _('Deleted outside the product'),
'quarantined': _('Moved to quarantine'),
'gone-while-stopped': _('Missing after restart'),
} %}
{% if record.missing_reason %}
{{ missing_labels.get(record.missing_reason, record.missing_reason) }}
{% endif %}
{% if record.missing_at %}
{{ record.missing_at }}
{% endif %}
{% endif %}
|
{{ _('Detection Info') }}
| {{ _('Detected at') }} | {{ record.detected_at }} |
| {{ _('Matched rule') }} | {{ record.rule_name }} |
| {{ _('Feature list') }} |
{% for feature in record.features %}
{{ feature }}
{% endfor %}
|
| {{ _('Communications') }} | {{ record.communication_count }} |
| {{ _('First seen IP') }} | {{ record.first_seen_ip }} |
| {{ _('Content SHA-256') }} |
{% if record.content_hash %}
{{ record.content_hash }}
{% else %}
{{ _('Not recorded') }}
{% endif %}
|
{{ _('Alert status') }}
| {{ _('Alerted') }} |
{% if record.alerted %}
{{ _('Yes') }}
{% else %}
{{ _('No') }}
{% endif %}
|
| {{ _('False positive') }} |
{% if record.marked_false_positive %}
{{ _('Marked') }}
{% else %}
{{ _('Not marked') }}
{% endif %}
|
{% if record.quarantine_info %}
{{ _('Quarantine Info') }}
| {{ _('Quarantine ID') }} | {{ record.quarantine_info.quarantine_id }} |
| {{ _('Quarantine path') }} | {{ record.quarantine_info.quarantine_path }} |
| {{ _('Quarantined at') }} | {{ record.quarantine_info.quarantine_time }} |
{% endif %}
{% if record.linked_profiles %}
{{ _('Linked threat profiles') }}
{% for lp in record.linked_profiles %}
{{ lp.profile_id }}
{{ _('Risk:') }} {{ lp.risk_score }}
{{ _('%(count)s IPs', count=lp.ip_count) }}
{{ lp.tool_signature }}
{% endfor %}
{% endif %}