Webgoat

Start webgoat

java --add-modules java.xml.bind -jar webgoat-server-8.0.0.M21.jar

localhost:8080/WebGoat

How it works:

  1. Request or response line

  2. Header section

  3. Entity body

The client contacts the server and sends a document request

GET /index.html?param=value HTTP/1.0

Next, the client sends optional header information to inform the server of its configuration and document formats it will accept:

User-Agent: Mozilla/4.06 Accept: image/gif, image/jpeg, */*

Afterwards, the client may send additional data to be used by CGI programs using the POST method

Last updated