Setting up accounts for use with Nessus Scans on ESXi
FD Recently had a request to add a non-root/out of the box root user for some Nessus scans recently. For ESXi hosts it’s a process of creating a localuser and running the contents of the below in a Powershell Script. $esx_hosts = Get-VMHost | where {$_.ConnectionState -ne “NotResponding”} foreach ($esx_host in $esx_hosts) { Write-Host […]