Ensure that all Docker swarm overlay networks are encrypted
Scanned 9/3/2026
Install to Claude Code
npx -y skills add CyberStrikeus/CyberStrike --skill cis-docker-7.3 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cis Docker 7.3?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyberstrikeus-cis-docker-7-3)More formats (shields.io, HTML) on the badges page.
---
name: cis-docker-7.3
description: "Ensure that all Docker swarm overlay networks are encrypted"
category: cis-docker
version: "1.8.0"
author: cyberstrike-official
tags: [cis, docker, swarm, orchestration, networking, encryption]
cis_id: "7.3"
cis_benchmark: "CIS Docker Benchmark v1.8.0"
tech_stack: [linux, docker]
cwe_ids: []
chains_with: []
prerequisites: []
severity_boost: {}
---
# 7.3 Ensure that all Docker swarm overlay networks are encrypted (Manual)
## Profile Applicability
- Level 1 - Docker Swarm
## Description
Ensure that all Docker swarm overlay networks are encrypted.
## Rationale
By default, data exchanged between containers on nodes on the overlay network is not encrypted. This could potentially expose traffic between containers.
## Impact
None
## Audit Procedure
You should run the command below to ensure that each overlay network has been encrypted.
```
docker network ls --filter driver=overlay --quiet | xargs docker network inspect --format '{{.Name}} {{ .Options }}'
```
## Remediation
You should create overlay networks the with `--opt encrypted` flag.
## Default Value
By default, data exchanged in overlay networks in Docker swarm mode is not encrypted.
## References
1. https://docs.docker.com/network/overlay/#encrypt-traffic-on-an-overlay-network
## CIS Controls
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
| ---------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---- | ---- | ---- |
| v8 | 3.10 Encrypt Sensitive Data in Transit<br>Encrypt sensitive data in transit. Example implementations can include: Transport Layer Security (TLS) and Open Secure Shell (OpenSSH). | | ● | ● |
| v7 | 14.4 Encrypt All Sensitive Information in Transit<br>Encrypt all sensitive information in transit. | | ● | ● |
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!