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

Status 403 Forbidden Log Entries

{% for entry in entries %}

Time Stamp: {{ entry['timestamp'] }}

IP Address: {{ entry['ip_address'] }}

HTTP Method: {{ entry['http_method'] }}

Requested URL: {{ entry['requested_url'] }}

{% if entry['xss_alert'] %}

XSS Alert (Click to show details)

{{ entry['xss_alert'] }}

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

SQL Alert (Click to show details)

{{ entry['sql_alert'] }}

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

PUT Method Alert (Click to show details)

{{ entry['put_method'] }}

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

Illegal Resource Access Alert (Click to show details)

{{ entry['illegal_resource'] }}

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

WebShell Attack Alert (Click to show details)

{{ entry['webshell_alert'] }}

{% endif %}

Status Code: 403

{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}