SV-258750r1138009_rule
V-258750
SRG-OS-000478-VMM-001980
ESXI-80-000187
CAT II
10
From an ESXi shell, run the following command:
# esxcli system ssh server config set -k ciphers -v aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
or
From a PowerCLI command prompt while connected to the ESXi host, run the following commands:
$esxcli = Get-EsxCli -v2
$arguments = $esxcli.system.ssh.server.config.set.CreateArgs()
$arguments.keyword = 'ciphers'
$arguments.value = 'aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr'
$esxcli.system.ssh.server.config.set.Invoke($arguments)
From an ESXi shell, run the following command:
# esxcli system ssh server config list -k ciphers
or
From a PowerCLI command prompt while connected to the ESXi host, run the following commands:
$esxcli = Get-EsxCli -v2
$esxcli.system.ssh.server.config.list.invoke() | Where-Object {$_.Key -eq 'ciphers'}
Expected result:
ciphers aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
If the output matches the ciphers in the expected result or a subset thereof, this is not a finding.
If the ciphers in the output contain any ciphers not listed in the expected result, this is a finding.
V-258750
False
ESXI-80-000187
From an ESXi shell, run the following command:
# esxcli system ssh server config list -k ciphers
or
From a PowerCLI command prompt while connected to the ESXi host, run the following commands:
$esxcli = Get-EsxCli -v2
$esxcli.system.ssh.server.config.list.invoke() | Where-Object {$_.Key -eq 'ciphers'}
Expected result:
ciphers aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
If the output matches the ciphers in the expected result or a subset thereof, this is not a finding.
If the ciphers in the output contain any ciphers not listed in the expected result, this is a finding.
M
5562