STIGhubSTIGhub
STIGsSearchCompare

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
  • Compare Versions

Resources

  • About
  • Release Notes
  • VPAT
  • DISA STIG Library
STIGs updated 6 hours ago
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to SUSE Linux Enterprise Server 15 Security Technical Implementation Guide

V-235008

CAT II (Medium)

The SUSE operating system SSH daemon public host key files must have mode 0644 or less permissive.

Rule ID

SV-235008r991589_rule

STIG

SUSE Linux Enterprise Server 15 Security Technical Implementation Guide

Version

V2R7

CCIs

None

Discussion

If a public host key file is modified by an unauthorized user, the SSH service may be compromised.

Check Content

Verify the SUSE operating system SSH daemon public host key files have mode "0644" or less permissive.

Note: SSH public key files may be found in other directories on the system depending on the installation.

The following command will find all SSH public key files on the system:

> find /etc/ssh -name 'ssh_host*key.pub' -exec stat -c "%a %n" {} \;

644 /etc/ssh/ssh_host_rsa_key.pub
644 /etc/ssh/ssh_host_dsa_key.pub
644 /etc/ssh/ssh_host_ecdsa_key.pub
644 /etc/ssh/ssh_host_ed25519_key.pub

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

Fix Text

Configure the SUSE operating system SSH daemon public host key files have mode "0644" or less permissive.

Note: SSH public key files may be found in other directories on the system depending on the installation. 

Change the mode of public host key files under "/etc/ssh" to "0644" with the following command:

> sudo chmod 0644 /etc/ssh/ssh_host*key.pub