Skip to content

Ensure that Root's Path Does Not Include World or Group-Writable Directories

An XCCDF Rule

Description

For each element in root's path, run:

# ls -ld DIR
and ensure that write permissions are disabled for group and other.

Rationale

Such entries increase the risk that root could execute code provided by unprivileged users, and potentially malicious code.

ID
xccdf_org.ssgproject.content_rule_accounts_root_path_dirs_no_write
Severity
Medium
References
Updated



Remediation - Ansible

- name: Get root paths which are not symbolic links
  stat:
    path: '{{ item }}'
  changed_when: false
  failed_when: false
  register: root_paths