# Cis Docker 2.18

> Ensure that a daemon-wide custom seccomp profile is applied if appropriate

- Skill: `cyberstrikeus/cis-docker-2-18` (Agent Skill)
- Install (CLI): `npx skillmds@latest add cyberstrikeus/cis-docker-2-18`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cyberstrikeus/cis-docker-2-18/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: cyberstrikeus (https://skillmd.com/u/cyberstrikeus)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/cyberstrikeus/cis-docker-2-18

---


# Ensure that a daemon-wide custom seccomp profile is applied if appropriate (Manual)

## Profile Applicability

• Level 2 - Docker - Linux

## Description

You can choose to apply a custom seccomp profile at a daemon-wide level if needed with this overriding Docker's default seccomp profile.

## Rationale

A large number of system calls are exposed to every userland process with many of them not utilized during the entire lifetime of the process. Many applications do not need all the system calls and therefore benefit by having a reduced set of system calls reviewed in line with organizational security policy. A reduced set of system calls reduces the total kernel surface exposed to the application and therefore improves application security.

A custom seccomp profile can be applied instead of Docker's default seccomp profile. Alternatively, if Docker's default profile is adequate for your environment, you can choose to ignore this recommendation.

## Impact

A misconfigured seccomp profile could possibly interrupt your container environment. Docker-default blocked calls have been carefully scrutinized and address some critical vulnerabilities/issues within kernel environments (for example, kernel key ring calls). You should therefore exercise extreme care if you choose to override the default settings.

## Audit Procedure

You should run the command below and review the seccomp profile listed in the `Security Options` section. If it is `default` this indicates that Docker's default seccomp profile is applied.

```bash
docker info --format '{{ .SecurityOptions }}'
```

## Remediation

By default, Docker's default seccomp profile is applied. If this is adequate for your environment, no action is necessary. Alternatively, if you choose to apply your own seccomp profile, use the `--seccomp-profile` flag at daemon start or put it in the daemon runtime parameters file.

```bash
dockerd --seccomp-profile </path/to/seccomp/profile>
```

## Default Value

By default, Docker applies a default seccomp profile.

## References

1. https://docs.docker.com/engine/security/seccomp/

## CIS Controls

**Controls Version:** v8

**Control:** 16 Application Software Security

Manage the security life cycle of in-house developed, hosted, or acquired software to prevent, detect, and remediate security weaknesses before they can impact the enterprise.

**IG 1:**
**IG 2:**
**IG 3:**

---

**Controls Version:** v7

**Control:** 18 Application Software Security

Application Software Security

