Setting Up a Vulnerable GraphQL Server
Installing Docker
sudo apt install -y docker.iosudo systemctl enable docker --nowsudo docker
Deploying the Damn Vulnerable GraphQL Application (DVGA)
sudo apt install git -ygit clone -b blackhatgraphql https://github.com/dolevf/Damn-Vulnerable-GraphQL-Application.git cd Damn-Vulnerable-GraphQL-Applicationsudo docker build -t dvga .sudo docker run -t --rm -d --name dvga -p 5013:5013 -e WEB_HOST=0.0.0.0 dvgasudo docker container ps
Accessing the Application

Last updated