Docker
Pulling an image on Docker:
sudo docker pull centos:latestTo see all the Docker images installed, issue the command:
sudo docker imagesTo start the docker pulled CentOS, we need to issue a command to the OS to get a thread started. We can do this by running the following command:
sudo docker run -it centos /bin/bashDocker Example Building and Usage:
Clone this repository
git clone https://github.com/BeetleChunks/SpoolSploitBuild the SpoolSploit Docker container image
Create and start the SpoolSploit Docker container
Attach to the container
Docker Compose
Last updated