{% extends "base.html" %} {% set active_page = "logs" %} {% block title %}HAProxy • Logs{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
HAProxy Access Logs
{% if error_message %} {% endif %} {% if logs and logs|length > 0 %}
Total
{{ logs|length }}
Threats
0
2xx
0
4xx
0
5xx
0
Unique IPs
0

{% for entry in logs %} {% endfor %}
Timestamp IP Address HTTP Method Requested URL Status Code Alerts
{{ entry['timestamp'] }} {{ entry['ip_address'] }} {{ entry['http_method'] }} {{ entry['requested_url'] }} {{ entry['status_code'] }} {% if entry['xss_alert'] %} XSS {% endif %} {% if entry['sql_alert'] %} SQL {% endif %} {% if entry['put_method'] %} PUT {% endif %} {% if entry['webshell_alert'] %} Webshell {% endif %} {% if entry['illegal_resource'] %} 403 {% endif %}
{% elif logs %}
No log entries match your filters.
{% else %} {% endif %}
{% endblock %}