The /etc/sysconfig/docker file should be owned by the root account and group
이 페이지는 아직 영어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우
언제든지 연락주시기 바랍니다.Description
You should verify that the /etc/sysconfig/docker
file individual ownership and group ownership is correctly set to root.
Rationale
The /etc/sysconfig/docker
file contains sensitive parameters that may alter the behavior of the Docker daemon. It should therefore be individually owned and group owned by root to ensure that it is not modified by less privileged users.
Audit
Verify that the /etc/sysconfig/docker
file is individually owned and group-owned by root by running:
stat -c %U:%G /etc/sysconfig/docker | grep -v root:root
The command should return no results.
Run the following command: chown root:root /etc/sysconfig/docker
This sets the ownership and group ownership for the file to root.
Impact
None
Default value
This file may not be present on the system, and in this case, this recommendation is not applicable.
References
- https://docs.docker.com/engine/admin/configuring/
CIS controls
Version 6
5.1 Minimize And Sparingly Use Administrative Privileges Minimize administrative privileges and only use administrative accounts when they are required. Implement focused auditing on the use of administrative privileged functions and monitor for anomalous behavior.