{% extends "base.html" %} {% block title %}Auto-Response · SD RMM{% endblock %} {% block content %} {% include "_security_nav.html" %}
When a detection fires, automatically take an action. Destructive actions (isolate) wait for approval unless you mark auto-approve.
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.
| Name | Trigger | Match | Action | Approval | Status | |
|---|---|---|---|---|---|---|
| {{ 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' }} |
No auto-response rules yet. Add one above — e.g. "Collect triage on any critical detection" for instant forensic capture.
{% endif %}