A customized light version of Kali Linux,aimed to provide the basic nessesary tools to newcomers
247
start experimenting in IT security fields. Easy to deploy, easy to use! An ideal toolchain for CTF games.
The Docker image for Red Team is based on Kali Linux and contains some of the most fundamental tools for penetration testing. Most of them can be used in CTF challenges. Additionally the rockyou wordlist has been provided, to help you with password cracking.
To run created images :
sudo docker run -it nov3mb3r/redteam /bin/bash
You might want to work with a shared folder between your host and the container.
In this option, your host's Desktop folder will be mounted in the container's cases folder with read, write permissions.
$ sudo docker run -it -v ~/Desktop:/cases:rw redteam /bin/bash
In this option your container is able to spawn GUI
$ sudo docker run -it --privileged -v /tmp/.X11-unix:/tmp/.X11-unix:ro -e DISPLAY=:0 redteam /bin/bash
Content type
Image
Digest
Size
1.5 GB
Last updated
over 8 years ago
docker pull nov3mb3r/redteam