Room Link:
https://tryhackme.com/room/container-security-aoc2025-z0x3v6n9m2
Official walkthrough for quick onboarding:
🔗 YouTube Link:
https://youtu.be/600aXKJ9oJ8?si=0CDEHOLW-L1i_LqB

docker ps

Dockerfile


At this point, it’s clear the container has access to the Docker socket:
/var/run/docker.sock
This is a critical misconfiguration.

Why this is dangerous:
- In a secure Docker setup, containers cannot run Docker commands.
- Access to
/var/run/docker.sockallows interaction with the host Docker daemon.- The Docker daemon runs as root, meaning container access → host-level control.
- This results in a Docker escape.

THM{DOCKER_ESCAPE_SUCCESS}

There is a secret code inside the news site running on port 5002.
This code is also the password for the deployer user — a serious security mistake.

DeployMaster2025!