Training Module
CND (312-38) Network Defense Simulation
This module covers the networking and security implications of containerized environments. You will analyze how Docker architecture impacts host visibility, network isolation, and the underlying OS attack surface.
🛡️ Network Scenario
The engineering team has recently deployed a new set of microservices on a Linux host (10.0.10.50) using Docker. As a Network Defender, you notice an influx of new virtual network interfaces and iptables rules being dynamically generated on this host.
A runtime security alert triggered indicating suspicious lateral movement between two services that reside on the same physical host. You need to understand the underlying infrastructure technology to properly scope the incident and apply correct isolation controls.
📊 Traffic & Logs
[SYSLOG] kernel: docker0: port 1(veth9a3b) entered forwarding state
[IPTABLES] DOCKER-ISOLATION-STAGE-1: IN=docker0 OUT=docker_gwbridge DROP
[NETFLOW] 172.17.0.2:4444 -> 172.17.0.3:80 (TCP) - Intra-host communication (Blind to physical NIDS)
[FALCO ALERT] Notice: Container privilege escalation attempt (user=root container_id=a1b2c3d4 process=bash namespace=mnt)
Analysis: The traffic is routing over a virtual bridge (docker0) internally. Because the containers share the same underlying architecture, namespace breakouts pose a critical risk.
❓ Question
Docker provides Platform-as-a-Service (PaaS) through ________ and delivers containerized software packages.