{% extends 'base.html' %} {% block title %}Audit complet{% endblock %} {% block content %}

Audit complet serveurs

Applicatif + reseau + correlation — import JSON depuis le standalone

Carte flux
{% if msg %}
{% if msg.startswith('imported_') %} {% set parts = msg.split('_') %} {{ parts[1] }} serveur(s) importe(s){% if parts[2]|int > 0 %}, {{ parts[2] }} erreur(s){% endif %}. {% elif msg.startswith('error_') %}Erreur: {{ msg[6:] }}{% endif %}
{% endif %} {% if audits %}
{% for a in audits %} {% endfor %}
Hostname OS Kernel Uptime Services Process Ports Conn Reboot Date
{{ a.hostname }} {{ (a.os_release or '')[:30] }} {{ (a.kernel or '')[:25] }} {{ (a.uptime or '')[:20] }} {{ a.svc_count }} {{ a.proc_count }} {{ a.port_count }} {{ a.conn_count }} {% if a.reboot_required %}Oui{% else %}Non{% endif %} {{ a.audit_date.strftime('%d/%m %H:%M') if a.audit_date else '-' }}
{% else %}

Aucun audit importe.

Lancez le standalone sur vos serveurs puis importez le JSON ici.

{% endif %} {% endblock %}