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

Sandbox

Submit a suspicious file to the isolated sandbox (your-host). Static = signatures, YARA, capabilities, IOC extraction — never runs the file (~1 min). Detonate = runs it in an air-gapped VM and records its behaviour (~2 min, Linux samples). Anything the sample tries to contact is captured but never leaves the sandbox.

Max 32 MB. Results appear below when the sandbox finishes.
{% if report %}

Report — {{ viewing }}

{{ report|e }}
{% endif %}

Recent submissions

{% if not jobs %}

No submissions yet.

{% else %} {% for j in jobs %} {% endfor %}
WhenFileModeStatusVerdict
{{ j.ts }} {{ j.name|e }} {{ j.mode }} {{ j.status }} {% if j.verdict %}{% set v = j.verdict|lower %}{{ j.verdict }}{% else %}{% endif %} {% if j.status in ['done','error','timeout'] %}view{% endif %}

Reload this page to refresh status while a scan runs.

{% endif %}
{% endblock %}