Skip to content

0079-issue-priv-Ensure Correct Permissions for /etc/issue (-rw-r--r--)


Rule ID

  • 0079-issue-priv

Category

  • system

Level

  • warn

Compatible Versions

  • Linux

Description

  • The content of the /etc/issue file will be displayed to users before they log in via a local terminal.

Scan Frequency

  • 1 */5 * * *

Theoretical Basis

  • If the /etc/issue file does not have the correct ownership, unauthorized users may modify it with incorrect or misleading information.

Risk Items

  • Hacker penetration

  • Data leakage

  • Mining risk

  • Botnet risk

Audit Method

  • Run the following command and verify that Uid and Gid are both 0/root, and Access is 644:
 # stat /etc/issue
Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root)

Remediation

  • Run the following commands to set permissions for /etc/issue:
    # chown root:root /etc/issue
    # chmod u-x,go-wx /etc/issue
    

Impact

  • None

Default Value

  • None

References

CIS Controls

  • Version 7 14.6 Protect Information through Access Control Lists Use access control lists for file systems, network shares, claims, applications, or database-specific access control lists to protect all information stored on the system. These controls enforce the principle that only authorized individuals have access to information as part of their job responsibilities.

Feedback

Is this page helpful? ×