@extends('layouts.app') @section('title', 'Scanprofile') @section('content')
Scanparameter werden ausschliesslich über diese Profile festgelegt. Es gibt bewusst kein Feld, in das Benutzer eigene Nmap-Optionen, Skripte oder Nessus-Parameter eintragen können.
@foreach ($profiles as $profile) @endforeach
ProfilEngineIntensitätFreigabeWartungsfenster LaufzeitVerwendungenStatus
{{ $profile->name }}
{{ Str::limit($profile->description, 110) }}
{{ $profile->engine->label() }} {{ $profile->intensityLabel() }} {{ $profile->requires_approval || $profile->isAggressive() ? 'erforderlich' : '–' }} {{ $profile->requires_maintenance_window ? 'erforderlich' : '–' }} {{ gmdate('H:i:s', $profile->maxRuntime()) }} {{ $profile->scan_jobs_count }} {{ $profile->is_active ? 'aktiv' : 'inaktiv' }}
@endsection