SV-256437r959010_rule
V-256437
SRG-OS-000480-VMM-002000
ESXI-70-000085
CAT II
10
From an ESXi shell, run the following commands:
# esxcli system syslog config set --x509-strict="true"
# esxcli system syslog reload
or
From a PowerCLI command prompt while connected to the ESXi host, run the following commands:
$esxcli = Get-EsxCli -v2
$arguments = $esxcli.system.syslog.config.set.CreateArgs()
$arguments.x509strict = $true
$esxcli.system.syslog.config.set.Invoke($arguments)
$esxcli.system.syslog.reload.Invoke()
If SSL is not used for the syslog target, this is not applicable.
From an ESXi shell, run the following command:
# esxcli system syslog config get|grep 509
or
From a PowerCLI command prompt while connected to the ESXi host, run the following commands:
$esxcli = Get-EsxCli -v2
$esxcli.system.syslog.config.get.invoke()|Select StrictX509Compliance
Expected result:
Strict X509Compliance: true
If the output does not match the expected result, this is a finding.
V-256437
False
ESXI-70-000085
If SSL is not used for the syslog target, this is not applicable.
From an ESXi shell, run the following command:
# esxcli system syslog config get|grep 509
or
From a PowerCLI command prompt while connected to the ESXi host, run the following commands:
$esxcli = Get-EsxCli -v2
$esxcli.system.syslog.config.get.invoke()|Select StrictX509Compliance
Expected result:
Strict X509Compliance: true
If the output does not match the expected result, this is a finding.
M
5518