{% extends "base.html" %} {% set active_page = "" %} {% block title %}HAProxy • Logs{% endblock %} {% block breadcrumb %}{% endblock %} {% block content %}

Status 403 Forbidden

{% if entries %}
{% for entry in entries %}
Czas: {{ entry['timestamp'] }}
IP: {{ entry['ip_address'] }}
Metoda: {{ entry['http_method'] }}
URL: {{ entry['requested_url'] }}
Status: 403
{% if entry['xss_alert'] %}

{{ entry['xss_alert'] }}
{% endif %} {% if entry['sql_alert'] %}

{{ entry['sql_alert'] }}
{% endif %} {% if entry['put_method'] %}

{{ entry['put_method'] }}
{% endif %} {% if entry['illegal_resource'] %}

{{ entry['illegal_resource'] }}
{% endif %} {% if entry['webshell_alert'] %}

{{ entry['webshell_alert'] }}
{% endif %}
{% endfor %}
{% else %}
No data.
{% endif %} {% endblock %}