{{ title }}

{% if author %}作者: {{ author }} | {% endif %} {% if company %}公司: {{ company }} | {% endif %} 日期: {{ date }}

报告摘要

本报告基于对文件 {{ filename }} 的分析,生成于 {{ generated_at }}。

{% if stats %}

总请求数

{{ stats.total_requests }}

唯一URL

{{ stats.unique_urls }}

来源IP

{{ stats.unique_ips }}

状态码

{{ stats.status_codes }}

威胁检测

{{ stats.threats }}
{% endif %}
{% if threats %}

安全威胁分析

共检测到 {{ threats|length }} 个潜在威胁。

{% for threat in threats %}

{{ threat.url }}

访问次数: {{ threat.count }}

威胁类型: {{ threat.types|join(', ') }}

{% endfor %}
{% endif %} {% if url_stats %}

详细URL统计

显示前 {{ url_stats|length }} 个最常访问的URL。

{% for stat in url_stats %} {% endfor %}
URL 访问次数 来源IP 请求方法 状态码 User Agent
{{ stat.url }} {{ stat.count }} {% for ip in stat.ips[:3] %} {{ ip.ip }} ({{ ip.location }}) - {{ ip.count }}
{% endfor %} {% if stat.ips|length > 3 %}...{% endif %}
{% for method, count in stat.methods.items() %} {{ method }}: {{ count }}
{% endfor %}
{% for code, count in stat.status_codes.items() %} {{ code }}: {{ count }}
{% endfor %}
{% for ua, count in stat.user_agents.items() %} {{ ua }}: {{ count }}
{% endfor %}
{% endif %}