Setting capabilities can lead to privilege escalation and container escapes.
Linux capabilities allow you to assign narrow slices of root
's permissions to processes. A thread with capabilities bypasses the
normal kernel security checks to execute high-privilege actions such as mounting a device to a directory, without requiring additional root
privileges.
In a container, capabilities might allow to access resources from the host system which can result in container escapes. For example, with the
capability SYS_ADMIN
an attacker might be able to mount devices from the host system inside of the container.
Ask Yourself Whether
Capabilities are granted:
- To a process that does not require all capabilities to do its job.
- To a not trusted process.
There is a risk if you answered yes to any of those questions.
Recommended Secure Coding Practices
Capabilities are high privileges, traditionally associated with superuser (root), thus make sure that the most restrictive and necessary
capabilities are assigned.
In the best case, no capabilities should be granted at all.
Sensitive Code Example
- name: Set cap_sys_chroot+ep on /usr/bin/example
community.general.capabilities:
path: /usr/bin/example
capability: cap_sys_admin+ep # Sensitive
state: present
See