STIGhubSTIGhub
STIGsRMF ControlsCompare

STIGhub

A free tool to search and browse the entire DISA STIG library. Saves up to 75% in security compliance research time.

Navigation

  • Browse STIGs
  • Search
  • RMF Controls
  • Compare Versions

Resources

  • About
  • Release Notes
  • VPAT
  • DISA STIG Library
STIGs updated 1 hour ago
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to IBM AIX 7.x Security Technical Implementation Guide

V-215321

CAT II (Medium)

AIX SSH private host key files must have mode 0600 or less permissive.

Rule ID

SV-215321r958450_rule

STIG

IBM AIX 7.x Security Technical Implementation Guide

Version

V3R2

CCIs

CCI-000186

Discussion

If the private key is discovered, an attacker can use the key to authenticate as an authorized user and gain access to the network infrastructure. The cornerstone of the PKI is the private key used to encrypt or digitally sign information. If the private key is stolen, this will lead to the compromise of the authentication and non-repudiation gained through PKI because the attacker can use the private key to digitally sign documents and pretend to be the authorized user. Both the holders of a digital certificate and the issuing authority must protect the computers, storage devices, or whatever they use to keep the private keys.

Check Content

Check the permissions for SSH private host key files: 
# ls -lL /etc/ssh/*key 

The above command should yield the following output:
-rw-------    1 root     system          668 Jan 18 2017  /etc/ssh/ssh_host_dsa_key
-rw-------    1 root     system          227 Jan 18 2017  /etc/ssh/ssh_host_ecdsa_key
-rw-------    1 root     system          965 Jan 18 2017  /etc/ssh/ssh_host_key
-rw-------    1 root     system         1675 Jan 18 2017  /etc/ssh/ssh_host_rsa_key

If any file has a mode more permissive than "0600", this is a finding.

Fix Text

Change the permissions for the SSH private host key files:
# chmod 0600 /etc/ssh/*key