{% extends "base.html" %} {% set active_page = "logs" %} {% block title %}HAProxy • Logs{% endblock %} {% block breadcrumb %}Logs{% endblock %} {% block content %}
HAProxy Access Logs
{% if logs %}
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 %}
{% else %}
No log entries found.
{% endif %}
{% endblock %}