{% extends "pages/main.html" %} {% load staticfiles %} {% block title %} Sysmon Configuration {% endblock %} {% block container %}

Configuration

Warning : Enabling security controls doesn't prevent your application from being vulnerable, some violations may be false positives and somme attacks may be not detected.

{% for control in blackbox_controls %} {% endfor %}
Control type Status Description Severity Entries
{{ control.name }} {% if control.enabled %} ON {% else %} OFF {% endif %} {{ control.description }} {% elif control.severity.name == "MEDIUM" %} "label label-warning"> {% elif control.severity.name == "LOW" %} "label label-info severity"> {% else %} "label label-default severity"> {% endif %} {{ control.severity.name }} {{ control.entries|length }}

Events to log when an http request is received by the server.

{% for rule in log_http_attributes %} {% endfor %}
Log rule Status Description
{{ rule.name }} {% if rule.enabled %} ON {% else %} OFF {% endif %} {{ rule.description }}

Events to log when a view is being processed by the server.

{% for rule in log_view_attributes %} {% endfor %}
Log rule Status Description
{{ rule.name }} {% if rule.enabled %} ON {% else %} OFF {% endif %} {{ rule.description }}

Events to log when a response is emitted from the server.

{% for rule in log_response_attributes %} {% endfor %}
Log rule Status Description
{{ rule.name }} {% if rule.enabled %} ON {% else %} OFF {% endif %} {{ rule.description }}

Note: Click on the linked heading text to expand or collapse panels.

{% endblock %}