{% extends "base.html" %} {% block content %}

Jump to Section

URL Overview

Submitted URL: {{ submitted_url }}

Final URL: {{ final_url }}

Permalink: {{ request.host_url }}results/{{ uuid }}

Back to top

Enrichment

{% if enrichment.whois %}

WHOIS

{% for k, v in enrichment.whois.items() %} {% endfor %}
Field Value
{{ k.replace('_', ' ').title() }} {{ v }}
{% endif %} {% if enrichment.raw_whois %}

Raw WHOIS

{{ enrichment.raw_whois }}
{% endif %} {% if enrichment.geoip %}

GeoIP

{% for ip, info in enrichment.geoip.items() %}
{{ ip }} {% for key, val in info.items() %} {% endfor %}
{{ key.replace('_', ' ').title() }} {{ val }}
{% endfor %} {% endif %} {% if enrichment.bec_words %}

BEC Words Detected

{% for word in enrichment.bec_words %} {% endfor %}
Word
{{ word }}
{% endif %} {% if not enrichment.whois and not enrichment.raw_whois and not enrichment.geoip and not enrichment.bec_words %}

No enrichment data available.

{% endif %}

Back to top

Redirects

{% if redirects %} {% for r in redirects %} {% endfor %}
Status URL
{{ r.status }} {{ r.url }}
{% else %}

No redirects detected.

{% endif %}

Back to top

Forms

{% if forms %} {% for form in forms %}
{{ form.status }} — Action: {{ form.action }} ({{ form.method | upper }}) {% for inp in form.inputs %} {% endfor %}
Input Name Type
{{ inp.name }} {{ inp.type }}
{% if form.flagged %}

Flag Reasons:

{% endif %}
{% endfor %} {% else %}

No forms detected.

{% endif %}

Back to top

Suspicious Scripts

{% if suspicious_scripts %} {% for s in suspicious_scripts %} {% endfor %}
Type Source URL Content Snippet Matches (Rules & Heuristics)
{{ s.type or 'unknown' }} {% if s.src %} {{ s.src }} {% else %} N/A {% endif %} {% if s.content_snippet %}
View snippet
{{ s.content_snippet }}
{% else %} N/A {% endif %}
{% set has_rules = s.rules and s.rules|length > 0 %} {% set has_heur = s.heuristics and s.heuristics|length > 0 %} {% if has_rules %} Rules
    {% for r in s.rules %}
  • {{ r.name }} {% if r.description %} — {{ r.description }} {% endif %}
  • {% endfor %}
{% endif %} {% if has_heur %} Heuristics
    {% for h in s.heuristics %}
  • {{ h }}
  • {% endfor %}
{% endif %} {% if not has_rules and not has_heur %} N/A {% endif %}
{% else %}

No suspicious scripts detected.

{% endif %}

Back to top

Screenshot

Screenshot

Back to top

Source

View Source

Back to top

{% endblock %}