https://github.com/bengmend/webgoat2
Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (13.0%) to scientific vocabulary
Repository
Basic Info
- Host: GitHub
- Owner: bengmend
- License: other
- Language: JavaScript
- Default Branch: main
- Size: 91.4 MB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 25
- Releases: 0
Metadata Files
README.md
WebGoat 8: A deliberately insecure Web Application
Introduction
WebGoat is a deliberately insecure web application maintained by OWASP designed to teach web application security lessons.
This program is a demonstration of common server-side application flaws. The exercises are intended to be used by people to learn about application security and penetration testing techniques.
WARNING 1: While running this program your machine will be extremely vulnerable to attack. You should disconnect from the Internet while using this program. WebGoat's default configuration binds to localhost to minimize the exposure.
WARNING 2: This program is for educational purposes only. If you attempt these techniques without authorization, you are very likely to get caught. If you are caught engaging in unauthorized hacking, most companies will fire you. Claiming that you were doing security research will not work as that is the first thing that all hackers claim.

Installation instructions:
For more details check the Contribution guide
1. Run using Docker
Already have a browser and ZAP and/or Burp installed on your machine in this case you can run the WebGoat image directly using Docker.
Every release is also published on DockerHub.
shell
docker run -it -p 127.0.0.1:8080:8080 -p 127.0.0.1:9090:9090 webgoat/webgoat
If you want to reuse the container, give it a name:
shell
docker run --name webgoat -it -p 127.0.0.1:8080:8080 -p 127.0.0.1:9090:9090 webgoat/webgoat
As long as you don't remove the container you can use:
shell
docker start webgoat
This way, you can start where you left off. If you remove the container, you need to use docker run again.
2. Run using Docker with complete Linux Desktop
Instead of installing tools locally we have a complete Docker image based on running a desktop in your browser. This way you only have to run a Docker image which will give you the best user experience.
shell
docker run -p 127.0.0.1:3000:3000 webgoat/webgoat-desktop
3. Standalone
Download the latest WebGoat release from https://github.com/WebGoat/WebGoat/releases
shell
java -Dfile.encoding=UTF-8 -Dwebgoat.port=8080 -Dwebwolf.port=9090 -jar webgoat-2023.3.jar
Click the link in the log to start WebGoat.
4. Run from the sources
Prerequisites:
- Java 17
- Your favorite IDE
- Git, or Git support in your IDE
Open a command shell/window:
Shell
git clone git@github.com:WebGoat/WebGoat.git
Now let's start by compiling the project.
```Shell
cd WebGoat
git checkout <
On Linux/Mac:
./mvnw clean install
On Windows:
./mvnw.cmd clean install
Using docker or podman, you can than build the container locally
docker build -f Dockerfile . -t webgoat/webgoat ```
Now we are ready to run the project. WebGoat is using Spring Boot.
```Shell
On Linux/Mac:
./mvnw spring-boot:run
On Windows:
./mvnw.cmd spring-boot:run
```
... you should be running WebGoat on http://localhost:8080/WebGoat momentarily.
Note: The above link will redirect you to login page if you are not logged in. LogIn/Create account to proceed.
To change the IP address add the following variable to the WebGoat/webgoat-container/src/main/resources/application.properties file:
server.address=x.x.x.x
4. Run with custom menu
For specialist only. There is a way to set up WebGoat with a personalized menu. You can leave out some menu categories or individual lessons by setting certain environment variables.
For instance running as a jar on a Linux/macOS it will look like this:
Shell
export EXCLUDE_CATEGORIES="CLIENT_SIDE,GENERAL,CHALLENGE"
export EXCLUDE_LESSONS="SqlInjectionAdvanced,SqlInjectionMitigations"
java -jar target/webgoat-2023.3-SNAPSHOT.jar
Or in a docker run it would (once this version is pushed into docker hub) look like this:
Shell
docker run -d -p 127.0.0.1:8080:8080 -p 127.0.0.1:9090:9090 -e EXCLUDE_CATEGORIES="CLIENT_SIDE,GENERAL,CHALLENGE" -e EXCLUDE_LESSONS="SqlInjectionAdvanced,SqlInjectionMitigations" webgoat/webgoat
Owner
- Login: bengmend
- Kind: user
- Repositories: 13
- Profile: https://github.com/bengmend
GitHub Events
Total
- Delete event: 1
- Push event: 113
- Pull request event: 2
- Create event: 3
Last Year
- Delete event: 1
- Push event: 113
- Pull request event: 2
- Create event: 3
Dependencies
- actions/checkout v3 composite
- docker.io/eclipse-temurin 17-jre-focal build
- org.projectlombok:lombok provided
- cglib:cglib-nodep 2.2
- com.google.guava:guava 30.1-jre
- com.nulab-inc:zxcvbn 1.5.2
- com.thoughtworks.xstream:xstream 1.4.5
- commons-io:commons-io 2.6
- io.jsonwebtoken:jjwt 0.9.1
- javax.xml.bind:jaxb-api
- org.apache.commons:commons-exec 1.3
- org.apache.commons:commons-lang3
- org.apache.commons:commons-text 1.9
- org.asciidoctor:asciidoctorj 2.5.3
- org.bitbucket.b_c:jose4j 0.7.6
- org.flywaydb:flyway-core
- org.glassfish.jaxb:jaxb-runtime
- org.hsqldb:hsqldb
- org.jsoup:jsoup 1.14.3
- org.springframework.boot:spring-boot-starter-actuator
- org.springframework.boot:spring-boot-starter-data-jpa
- org.springframework.boot:spring-boot-starter-security
- org.springframework.boot:spring-boot-starter-thymeleaf
- org.springframework.boot:spring-boot-starter-undertow
- org.springframework.boot:spring-boot-starter-validation
- org.springframework.boot:spring-boot-starter-web
- org.thymeleaf.extras:thymeleaf-extras-springsecurity5
- org.webjars:bootstrap 5.3.3
- org.webjars:jquery 3.5.1
- xml-resolver:xml-resolver 1.2
- com.github.tomakehurst:wiremock 2.27.2 test
- io.rest-assured:rest-assured test
- org.springframework.boot:spring-boot-starter-test test
- org.springframework.security:spring-security-test test
- event-source-polyfill 1.0.26
- faker 5.5.3