This is a web vulnerability challenge, try to find the flag. This challenge requires docker.
- Install Docker
- Build the image
docker build -t fr1end .
- Start the container with a port of your choice by replacing 1337
docker run --name=fr1end -p1337:80 -p4000:4000 fr1end
- The challenge can be found in http://localhost:1337/
Run the following bash script to build and run the challenge ./build_docker.sh
. The challenge can be found in http://localhost:1337/
Don't forget to delete both the container and the image of the challenge after you finish:
- Delete container
docker rm fr1end -f
- Delete image
docker rmi fr1end
Have fun !