{% extends "base.html" %} {% block title %}Web Protection · SD RMM{% endblock %} {% block content %}

Web Protection

Check URLs or domains against the live threat-intelligence feed — the same engine the agents use at navigation time. {{ "{:,}".format(ioc_total) }} indicators loaded

Public teaser version (single URL, no login) lives at /scan.
{% if summary %}
{{ summary.checked }} checked
{{ summary.blocked }} flagged
{{ summary.suspicious }} suspicious
{{ summary.clean }} clean
{% if results %} {% for r in results %} {% endfor %}
URL / domainVerdictMatched onSourceFamily
{{ r.url|e }} {% if r.blocked %}BLOCKED{% elif r.suspicious %}SUSPICIOUS{% else %}clean{% endif %} {% if r.blocked %}{{ r.reason or '—' }}{% elif r.suspicious %}{{ r.findings|join('; ') }}{% else %}—{% endif %} {{ r.source or '—' }} {{ r.family or '—' }}
{% else %}

No valid URLs in that input.

{% endif %} {% endif %}
{% endblock %}