{% extends 'base.html' %} {% block title %}Résultats audit temps réel{% endblock %} {% block content %}
← Retour audit

Résultats audit temps réel

{{ total }}
Total
{{ ok }}
Connectés
{{ failed }}
Échoués
{% for r in results %} {% endfor %}
Hostname Statut FQDN résolu OS Kernel Disque Qualys S1 Services Sans auto BDD Containers
{{ r.hostname }} {{ r.status[:12] }} {{ r.resolved_fqdn or '-' }} {{ (r.os_release or '-')[:25] }} {{ (r.kernel or '-')[:20] }} {% if r.disk_alert %}ALERTE {% elif r.status == 'OK' %}OK {% else %}-{% endif %} {% if r.qualys_active %}OK{% elif r.status == 'OK' %}KO{% else %}-{% endif %} {% if r.sentinelone_active %}OK{% elif r.status == 'OK' %}KO{% else %}-{% endif %} {% if r.services_running %}{{ r.services_running.split('\n')|length }}{% else %}-{% endif %} {% if r.running_not_enabled and r.running_not_enabled != 'none' %}{{ r.running_not_enabled.split('\n')|length }}{% else %}-{% endif %} {{ (r.db_detect or '-')[:15] }} {{ (r.containers or '-')[:20] }}
{% for r in results %} {% if r.status == 'OK' %}
{{ r.hostname }} — {{ r.resolved_fqdn or '' }}

Espace disque

{{ r.disk_space or 'N/A' }}

Applications

{{ r.apps_installed or 'N/A' }}

Services actifs

{{ r.services_running or 'N/A' }}

Sans auto-start

{{ r.running_not_enabled or 'Aucun' }}

Ports

{{ r.listening_ports or 'N/A' }}

Agents

{{ r.agents or 'N/A' }}
{% if r.containers and r.containers != 'none' %}

Containers

{{ r.containers }}
{% endif %} {% if r.failed_services and r.failed_services != 'none' %}

Services en échec

{{ r.failed_services }}
{% endif %}
{% endif %} {% endfor %} {% endblock %}