{% extends "base.html" %} {% block title %}Violations — vmware-harden{% endblock %} {% block content %}

Violations

{% if coverage_note %}

Partial coverage — this is not a clean bill of health.

{{ coverage_note }}

Rules that were not evaluated ({{ coverage.undetermined }})
{% endif %} {% if not has_data or violations|length == 0 %}
{# Never claim compliance on an incomplete scan: "no violations" only means "nothing found among the rules that ran". #} {% if coverage and not coverage.complete %}

No violations among the rules that could be evaluated.

{{ coverage.undetermined }} of {{ coverage.total }} rules were not evaluated — see above. Compliance is unknown, not confirmed.

{% else %}

No violations.

Either no scans have run, or the estate is compliant against every rule in this baseline.

{% endif %}
{% else %}
Showing {{ violations|length }} of {{ total }} violations (page {{ page }}) from latest snapshot.
{% for v in violations %} {% endfor %}
Severity Rule Node Baseline Evidence
{{ v.severity|upper }} {{ v.rule_id }}
{{ v.node_id }}
{% if v.node_name %}
{{ v.node_name }}
{% endif %}
{{ v.baseline_id }}
{% if has_prev or has_next %}
{% if has_prev %} ← Previous {% else %}{% endif %} Page {{ page }} {% if has_next %} Next → {% else %}{% endif %}
{% endif %} {% endif %} {% endblock %}