{% extends "rules/base.html" %} {% load staticfiles %} {% block sidebar %}

{{ rule.sid }}

{% if kibana and kibana_version >= 4 or evebox %}

Events list

{% endif %} {% if request.user.is_staff %}

Action

{% endif %} {% endblock %} {% block content %}

{{ rule.msg }}

{% if references %}

References

    {% for ref in references %}
  • {% if ref.url %} {{ ref.key|capfirst }}: {{ ref.value|truncatechars:80}} {% else %} {{ ref.key }}: {{ ref.value }} {% endif %}
  • {% endfor %}
{% endif %}
{% if elasticsearch %}

Hits by host (last {{ date }})

Fetching data...

Source IP (last {{ date }})

Fetching data...

Destination IP (last {{ date }})

Fetching data...
{% if probes %}

Activity (last {{ date }})

Fetching data...

{% endif %}

Definition

{{ rule.highlight_content|safe }}
{% endif %}

Status in rulesets

{% load render_table from django_tables2 %} {% render_table rulesets %}
{% if thresholds %}

Thresholds

{% render_table thresholds %}
{% endif %} {% if suppress %}

Suppressions

{% render_table suppress %}
{% endif %} {% if elasticsearch %}
{% endif %}
{% endblock %}