Skip to content
JavaScript Java HTML CSS Shell TSQL
Branch: develop
Clone or download

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.mvn/wrapper Fix issue with maven wrapper using TLS 1.2 as it no longer is supported Jul 9, 2019
config/checkstyle Code style (#696) Nov 3, 2019
docker All in one docker (#749) Jan 25, 2020
docs Update landing page Feb 8, 2019
platformQuickStarts clean up Jun 5, 2018
scripts All in one docker (#749) Jan 25, 2020
webgoat-container add support for status 403 feedback from e.g. ModSecurity/CRS Feb 28, 2020
webgoat-images/vagrant-training update JRE and milestone version to latest Nov 11, 2019
webgoat-integration-tests suppressing some useless log messages and banners in unit tests (#752) Jan 25, 2020
webgoat-lessons tested solution with unit test and verfied with lesson 5 on ie Feb 28, 2020
webgoat-server dockerfile and compose changes (#737) Dec 27, 2019
webwolf restored pom removal (#753) Jan 25, 2020
.gitignore Restructured XSS category. Updated gitignore to ignore TestClass.class. Mar 26, 2019
.travis.yml Adjust lesson template (#704) Nov 17, 2019
COPYRIGHT.txt Adjust lesson template (#704) Nov 17, 2019
CREATE_RELEASE.MD Add missing step necessary to finish the release May 3, 2019
LICENSE.txt
README.MD dockerfile and compose changes (#737) Dec 27, 2019
buildspec.yml initial add of cloudformation for platform seeding purposes May 21, 2017
docker-compose-local.yml docker-compose-local.yml now extends docker-compose.yml Aug 8, 2018
docker-compose-postgres.yml add login&pwd in JDBC url for PostgreSQL Jul 14, 2019
docker-compose.yml dockerfile and compose changes (#737) Dec 27, 2019
goat-with-reverseproxy.yaml dockerfile and compose changes (#737) Dec 27, 2019
mvn-debug moved global properties from lessons to container, added loading of g… Feb 6, 2015
mvnw Fix issue with maven wrapper using TLS 1.2 as it no longer is supported Jul 9, 2019
mvnw.cmd Fix issue with maven wrapper using TLS 1.2 as it no longer is supported Jul 9, 2019
pom.xml All in one docker (#749) Jan 25, 2020

README.MD

WebGoat 8: A deliberately insecure Web Application

Build Status Coverage Status Codacy Badge Dependency Status OWASP Labs GitHub release

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:

1. Standalone

Download the latest WebGoat release from https://github.com/WebGoat/WebGoat/releases

java -jar webgoat-server-8.0.0.VERSION.jar [--server.port=8080] [--server.address=localhost]

The latest version of WebGoat needs Java 11. By default WebGoat starts on port 8080 with --server.port you can specify a different port. With server.address you can bind it to a different address (default localhost)

2. Run using Docker

Every release is also published on DockerHub.

Using docker run

The easiest way to start WebGoat as a Docker container is to use the all-in-one docker container. This is a docker image that has WebGoat and WebWolf running inside.

docker run -d -p 8080:8080 -p 9090:9090 -e TZ=Europe/Amsterdam webgoat/goatandwolf

WebGoat will be located at: http://127.0.0.1:8080/WebGoat WebWolf will be located at: http://127.0.0.1:9090/WebWolf

Important: Choose the correct timezone, so that the docker container and your host are in the same timezone. As it important for the validity of JWT tokens used in certain exercises.

Using docker stack deploy

Another way to deply WebGoat and WebWolf in a more advanced way is to use a compose-file in a docker stack deploy. You can define which containers should run in which combinations and define all of this in a yaml file. An example of such a file is: goat-with-reverseproxy.yaml

This sets up an nginx webserver as reverse proxy to WebGoat and WebWolf. You can change the timezone by adjusting the value in the yaml file.

docker stack init
docker stack deploy --compose-file goat-with-reverseproxy.yaml webgoatdemo

Add the following entries in your local hosts file:

127.0.0.1 www.webgoat.local www.webwolf.localhost

You can use the overall start page: http://www.webgoat.local or:

WebGoat will be located at: http://www.webgoat.local/WebGoat

WebWolf will be located at: http://www.webwolf.local/WebWolf

Important: the current directory on your host will be mapped into the container for keeping state.

3. Run from the sources

Prerequisites:

  • Java 11
  • Maven > 3.2.1
  • Your favorite IDE
  • Git, or Git support in your IDE

Open a command shell/window:

git clone git@github.com:WebGoat/WebGoat.git

Now let's start by compiling the project.

cd WebGoat
git checkout <<branch_name>>
mvn clean install

Now we are ready to run the project. WebGoat 8.x is using Spring-Boot.

mvn -pl webgoat-server spring-boot:run

... you should be running webgoat on localhost:8080/WebGoat momentarily

To change IP address add the following variable to WebGoat/webgoat-container/src/main/resources/application.properties file

server.address=x.x.x.x

Building a new Docker image

NOTE: Travis will create a new Docker image automatically when making a new release.

cd WebGoat/
mvn install
cd webgoat-server
docker build -t webgoat/webgoat-8.0 .
docker tag webgoat/webgoat-8.0 webgoat/webgoat-8.0:8.0
docker login
docker push webgoat/webgoat-8.0

Run Instructions:

Once installed connect to http://localhost:8080/WebGoat and http://localhost:9090/WebWolf

You can’t perform that action at this time.