{% extends "base.html" %} {% block title %}Auto-Response · SD RMM{% endblock %} {% block content %} {% include "_security_nav.html" %}

Automated Response

When a detection fires, automatically take an action. Destructive actions (isolate) wait for approval unless you mark auto-approve.

{% if saved %}{% endif %}

Add a rule

Collect triage & Notify run automatically (safe). Isolate host is destructive — without auto-approve it queues for a super-admin to confirm on the device's Security tab.

Rules ({{ rules|length }})

{% if rules %} {% for r in rules %} {% endfor %}
NameTriggerMatchActionApprovalStatus
{{ r.name }} ≥ {{ r.min_severity }} {{ r.match_rule or 'any rule' }} {{ actions.get(r.action, r.action) }} {{ 'auto-approve' if r.auto_approve else ('approval req.' if r.action=='isolate_host' else 'n/a') }} {{ 'ENABLED' if r.enabled else 'disabled' }}
{% else %}

No auto-response rules yet. Add one above — e.g. "Collect triage on any critical detection" for instant forensic capture.

{% endif %}
{% endblock %}