Microctfs is a tool for small CTF challenges running on Docker.
cd logviewer
docker build -t logviewer .
docker run -d -p 8000:80 --name log_challenge logviewer docker rm -f log_challenge && docker run -d -p 8000:80 --name log_challenge logviewer
docker rm -f log_challenge
Also Read UBoat – A POC HTTP Botnet Project
cd sqli
docker build -t sqli .
docker run -d -p 8883:80 --name sqli_chal sqli docker rm -f sqli_chal && docker run -d -p 8883:80 --name sqli_chal sqli
docker rm -f sqli_chal
cd tcmanager
docker build -t tcmanager .
docker run -d -p 8080:8080 --name tc_chal tcmanager docker rm -f tc_chal && docker run -d -p 8080:8080 --name tc_chal tcmanager
docker rm -f tc_chal
cd geddy
docker build -t geddy .
docker run -d -p 40000:4000 --name geddy_chal geddy docker rm -f geddy_chal && docker run -d -p 40000:4000 --name geddy_chal geddy
docker rm -f geddy_chal
cd printf
docker build -t printf .
docker run -d -p 1337:1337 --name printfchal printf docker rm -f printfchal && docker run -d -p 1337:1337 --name printfchal printf
docker rm -f printfchal
cd xxe
docker build -t xxe .
docker run -d -p 8080:8080 xxe mvn jetty:run
The groupdel command in Linux removes a group from the system. It deletes the group's entry from /etc/group and /etc/gshadow,…
The wc command in Linux counts lines, words, characters, and bytes in files or standard input. It…
The top command in Linux provides a real-time view of running processes and system resource usage. From…
The usermod command in Linux modifies existing user account attributes. You can use it to manage group…
The sort command in Linux reads lines from files or standard input and writes them to standard…
The wall command in Linux sends a message to the terminals of all currently logged-in users. The…