Skip to content

Commit

Permalink
Merge pull request WebGoat#203 from span/readme-7.0.1
Browse files Browse the repository at this point in the history
Update package references in readme
  • Loading branch information
mayhew64 committed Feb 23, 2016
2 parents 3d7eb40 + 82d4324 commit 01636ea
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ penetration testing techniques.
* [Home Page](http://webgoat.github.io)
* [OWASP Project Home Page](http://www.owasp.org/index.php/Category:OWASP_WebGoat_Project)
* [Source Code](https://github.com/WebGoat/WebGoat)
* [Easy-Run Download](https://s3.amazonaws.com/webgoat-war/webgoat-container-7.0-SNAPSHOT-war-exec.jar)
* [Easy-Run Download](https://s3.amazonaws.com/webgoat-war/webgoat-container-7.0.1-war-exec.jar)
* [Wiki](https://github.com/WebGoat/WebGoat/wiki)
* [FAQ (old info):](http://code.google.com/p/webgoat/wiki/FAQ)
* [Project Leader - Direct to Bruce Mayhew](mailto:[email protected])
Expand Down Expand Up @@ -58,22 +58,22 @@ wish to simply try/test/run the current development version of WebGoat

#### 1. Download the easy run executable jar file which contains all the lessons and a embedded Tomcat server:

https://s3.amazonaws.com/webgoat-war/webgoat-container-7.0-SNAPSHOT-war-exec.jar
https://s3.amazonaws.com/webgoat-war/webgoat-container-7.0.1-war-exec.jar

#### 2. Run it using java:

Open a command shell/window, browse to where you downloaded the easy run jar and type:

```Shell
java -jar webgoat-container-7.0-SNAPSHOT-war-exec.jar
java -jar webgoat-container-7.0.1-war-exec.jar
```

#### 3. Browse to [http://localhost:8080/WebGoat](http://localhost:8080/WebGoat) and happy hacking !

#### (Optional) If you would like to change the port or other options, use the help command for guidance:

```Shell
java -jar webgoat-container-7.0-SNAPSHOT-war-exec.jar --help
java -jar webgoat-container-7.0.1-war-exec.jar --help
```

# For Developers
Expand Down Expand Up @@ -148,7 +148,7 @@ The __maven package__ goal generates an executable .jar file:
cd WebGoat
mvn package
cd webgoat-container/target
java -jar webgoat-container-7.0-SNAPSHOT-war-exec.jar http://localhost:8080/WebGoat
java -jar webgoat-container-7.1-SNAPSHOT-war-exec.jar http://localhost:8080/WebGoat
```

Browse to [http://localhost:8080/WebGoat](http://localhost:8080/WebGoat) and happy hacking !
Expand All @@ -159,7 +159,7 @@ The __maven package__ goal generates a .war file that can deployed into an Appli
```Shell
cd WebGoat
mvn package
cp webgoat-container/target/webgoat-container-7.0-SNAPSHOT.war <your_tomcat_directory>/webapps/
cp webgoat-container/target/webgoat-container-7.1-SNAPSHOT.war <your_tomcat_directory>/webapps/
```

Browse to [http://localhost:8080/WebGoat](http://localhost:8080/WebGoat) and happy hacking !
Expand Down

0 comments on commit 01636ea

Please sign in to comment.