{% extends "base.html" %} {% block title %}Flagged Event Details{% endblock %} {% block content %}
Back to Flagged Events

Flagged Event Details

Sigma rule and event details for this flagged event.

Sigma Rule Details

{% if matching_rule %}

Title

{{ matching_rule.title }}

Rule ID

{{ matching_rule.id }}

Severity

{{ matching_rule.level|capitalize }}

Tags

{% for tag in matching_rule.tags %} {{ tag }} {% endfor %}
{% if matching_rule.description %}

Description

{{ matching_rule.description }}

{% endif %} {% else %}
No Sigma rule details available for this event.
{% endif %}

Event Details

Event Type

{{ log_type|capitalize }}

Event ID

#{{ log.event_id }}

Timestamp

{{ log.time_created.strftime('%Y-%m-%d %H:%M:%S') }}

Computer

{{ log.computer }}

{% if log_type == 'sysmon' or log_type == 'application' %}

User

{{ log.user }}

{% elif log_type == 'security' %}

Subject User

{{ log.subject_user_name }}

{% endif %} {% if log_type == 'sysmon' or log_type == 'application' %}

Process ID

{{ log.process_id }}

{% endif %}
{% if log_type == 'sysmon' %}

Image

{{ log.image }}

Company

{{ log.company }}

Signed

{% if log.signed %}Yes{% else %}No{% endif %}

{% if log.hashes %}

Hashes

{{ log.hashes }}

{% endif %}
{% elif log_type == 'application' %}

Target Object

{{ log.target_object }}

Event Type

{{ log.event_type }}

Details

{{ log.details }}

{% elif log_type == 'security' %}

Target User

{{ log.target_user_name }}

Domain

{{ log.subject_domain_name }}

Subject SID

{{ log.subject_user_sid }}

Logon ID

{{ log.subject_logon_id }}

{% if log.caller_process_name %}

Caller Process

{{ log.caller_process_name }}

{% endif %}
{% elif log_type == 'system' %}

Provider

{{ log.provider_name }}

Record ID

{{ log.event_record_id }}

{% if log.event_data %}

Event Data

{% for key, value in log.event_data.items() %} {% endfor %}
Key Value
{{ key }} {{ value }}
{% endif %}
{% endif %}
{% endblock %}