Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save noname1007/3d1f76a77b6bd7d00cc26ed7dbc5ba35 to your computer and use it in GitHub Desktop.
Save noname1007/3d1f76a77b6bd7d00cc26ed7dbc5ba35 to your computer and use it in GitHub Desktop.
Docker Forensic.
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