Created
June 19, 2023 09:38
-
-
Save noname1007/3d1f76a77b6bd7d00cc26ed7dbc5ba35 to your computer and use it in GitHub Desktop.
Docker Forensic.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run --rm -it \ | |
-v /var/run/docker.sock:/var/run/docker.sock \ | |
wagoodman/dive:latest debian | |
## RUN MACOS | |
brew install dive | |
docker run -it --privileged --rm --pid=host debian nsenter -t 1 -m -u -n -i sh | |
cd /var/lib/docker/overlay2 | |
find . -name shell | |
##LINUX | |
sudo pip install dive | |
cd /var/lib/docker/overlay2 | |
find . -name shell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment