5.4 Do not use privileged containers

Information

Using the--privilegedflag gives all Linux Kernel Capabilities to the container thus overwriting the --cap-add and --cap-drop flags. Ensure that it is not used.The--privilegedflag gives all capabilities to the container, and it also lifts all the limitations enforced by the device cgroup controller. In other words, the container can then do almost everything that the host can do. This flag exists to allow special use-cases, like running Docker within Docker.

Solution

Do not run container with the--privilegedflag.
For example, do not start a container as below-
docker run --interactive --tty --privileged centos /bin/bash
Impact-
Linux Kernel Capabilities other than defaults would not be available for use within container.
Default Value-
False.

See Also

https://workbench.cisecurity.org/files/516

Item Details

Category: ACCESS CONTROL

References: 800-53|AC-6(4)

Plugin: Unix

Control ID: de117c346d532de1ab011c65d1a9ecf20b56b21ac9aec4f684a82d482a0d08c4