{{ $agent->name }}

Informazioni dispositivo

Dettagli del dispositivo selezionato

Stato
{{ $agent->data["status"] }}
Indirizzo IP
{{ $agent->data["ip"] }}
Sistema operativo
{{ $agent->data["os"]["name"] }}
Versione
{{ $agent->data["os"]["version"] }}
Last seen {{ \Carbon\Carbon::parse($agent->data["lastKeepAlive"])->format('d/m/Y H:i') }}

CVE Stats

@svg('heroicon-m-shield-exclamation', 'h-6 w-6 text-white')

Critical

@if(isset($agent->cve_summary["Critical"]) and $agent->cve_summary["Critical"] > 0) {{ $agent->cve_summary["Critical"] }} @else 0 @endif

@svg('heroicon-m-shield-check', 'h-6 w-6 text-white')

High

@if(isset($agent->cve_summary["High"]) and $agent->cve_summary["High"] > 0) {{ $agent->cve_summary["High"] }} @else 0 @endif
@svg('heroicon-m-wrench', 'h-6 w-6 text-white')

Medium

@if(isset($agent->cve_summary["Medium"]) and $agent->cve_summary["Medium"] > 0) {{ $agent->cve_summary["Medium"] }} @else 0 @endif

@svg('heroicon-m-computer-desktop', 'h-6 w-6 text-white')

Low

@if(isset($agent->cve_summary["Low"]) and $agent->cve_summary["Low"] > 0) {{ $agent->cve_summary["Low"] }} @else 0 @endif

@foreach($agent->sca_summary as $sca)

SCA - {{ $sca["name"] }}

Score
{{ $sca["score"] }}
Controlli
{{ $sca["total_checks"] }}
Pass
{{ $sca["pass"] }}
Fail
{{ $sca["fail"] }}
Non validi
{{ $sca["invalid"] }}
@foreach($sca_failed as $check)

{{$check["title"] }}

@svg('heroicon-m-x-circle', 'flex-shrink-0 mr-1.5 h-8 w-8 text-red-400')
Result
{{ strtoupper($check["result"]) }}
Compliance
Agid @foreach($check["compliance"] as $compliance) - {{ $compliance["value"] }} @endforeach
Descrizione
{{ $check["description"] }}
Remediation
{{ $check["remediation"] }}
@endforeach @foreach($sca_passed as $check)

{{ $check["title"] }}

@svg('heroicon-m-check-circle', 'flex-shrink-0 mr-1.5 h-8 w-8 text-green-400')
Result
{{ strtoupper($check["result"]) }}
Compliance
Agid @foreach($check["compliance"] as $compliance) - {{ $compliance["value"] }} @endforeach
Descrizione
{{ $check["description"] }}
Remediation
{{ $check["remediation"] }}
@endforeach @foreach($sca_invalid as $check)

{{ $check["title"] }}

@svg('heroicon-m-exclamation-circle', 'flex-shrink-0 mr-1.5 h-8 w-8 text-gray-400')
Result
Not applicable
Compliance
Agid @foreach($check["compliance"] as $compliance) - {{ $compliance["value"] }} @endforeach
Descrizione
{{ $check["description"] }}
Remediation
{{ $check["remediation"] }}
@endforeach @endforeach