{% extends "base.html" %} {% block title %}LASSO — Sandbox Rules{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %} {% if profiles %}
{% for p in profiles %}
{{ p.name }} {% if p.name in ('evaluation', 'strict') %} 🛡 Strict {% elif p.name == 'offline' %} 🛡 Offline {% elif p.name == 'open' %} 🛡 Open {% elif p.name == 'standard' %} 🛡 Standard {% elif p.source != 'builtin' %} saved {% endif %}
{% if p.description %}

{{ p.description }}

{% endif %}
Commands {% if p.cmd_mode == 'whitelist' %}allowed list{% elif p.cmd_mode == 'blacklist' %}blocked list{% else %}{{ p.cmd_mode }}{% endif %} Network {% if p.net_mode == 'none' %}offline{% elif p.net_mode == 'restricted' %}limited{% else %}{{ p.net_mode }}{% endif %} Memory {{ p.mem_limit }}
{% if p.tags %}
{% for tag in p.tags %} {{ tag }} {% endfor %}
{% endif %}
View Details {% if p.source == 'builtin' %} Duplicate & Edit {% else %} Edit {% endif %}
{% endfor %}
{% else %}

No profiles found

Create your first security policy using the button above or the CLI.

{% endif %} {% endblock %}