用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-docker-v160-2-14命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
macOS post-exploitation for credential harvesting, DTrace monitoring, TCC bypass, and stealth operations via native tools
Windows userland post-exploitation for credential harvesting, monitoring, AMSI/ETW bypass, and stealth operations
Kubernetes post-exploitation for container escape, secret extraction, RBAC abuse, and cluster persistence
基于 SOC 职业分类
正在显示 SKILL.md
| name | cis-docker-v160-2.14 |
| description | Ensure containers are restricted from acquiring new privileges |
| category | cis-docker |
| version | 1.6.0 |
| author | cyberstrike-official |
| tags | ["cis","docker","daemon","no-new-privileges","privilege-escalation"] |
| cis_id | 2.14 |
| cis_benchmark | CIS Docker Benchmark v1.6.0 |
| tech_stack | ["docker"] |
| cwe_ids | [] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
Profile Applicability: Level 1 - Docker - Linux
Assessment Status: Manual
By default you should restrict containers from acquiring additional privileges via suid or sgid.
A process can set the no_new_priv bit in the kernel and this persists across forks, clones and execve. The no_new_priv bit ensures that the process and its child processes do not gain any additional privileges via suid or sgid bits. This reduces the security risks associated with many dangerous operations because there is a much reduced ability to subvert privileged binaries.
Setting this at the daemon level ensures that by default all new containers are restricted from acquiring new privileges.
no_new_priv prevents LSMs such as SELinux from escalating the privileges of individual containers.
To confirm this setting, you should review the dockerd start-up options and a check of any settings in /etc/docker/daemon.json -sca should also be carried out.
To review the dockerd startup options, the following command can be used:
ps -ef | grep dockerd
You should ensure that the --no-new-privileges parameter is present and that it is not set to false.
The contents of /etc/docker/daemon.json should also be reviewed.
You should run the Docker daemon as below:
dockerd --no-new-privileges
By default, containers are not restricted from acquiring new privileges.
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
|---|---|---|---|---|
| v8 | 6.1 Establish an Access Granting Process Establish and follow a process, preferably automated, for granting access to enterprise assets upon new hire, grant, or role change of a user. | ● | ● | ● |
| v7 |
| 4 Controlled Use of Administrative Privileges Controlled Use of Administrative Privileges |
Profile: Level 1 - Docker - Linux Assessment Status: Manual