Update easy run links to package 7.0.1 and update developer references from 7.0-SNAPSHOT to 7.1-SNAPSHOT as noted by @diegochavezcarro in #200

This commit is contained in:
Daniel Kvist 2016-02-20 13:02:05 +01:00
parent daa05dd192
commit 82d4324b67

View File

@ -22,7 +22,7 @@ penetration testing techniques.
* [Home Page](http://webgoat.github.io) * [Home Page](http://webgoat.github.io)
* [OWASP Project Home Page](http://www.owasp.org/index.php/Category:OWASP_WebGoat_Project) * [OWASP Project Home Page](http://www.owasp.org/index.php/Category:OWASP_WebGoat_Project)
* [Source Code](https://github.com/WebGoat/WebGoat) * [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) * [Wiki](https://github.com/WebGoat/WebGoat/wiki)
* [FAQ (old info):](http://code.google.com/p/webgoat/wiki/FAQ) * [FAQ (old info):](http://code.google.com/p/webgoat/wiki/FAQ)
* [Project Leader - Direct to Bruce Mayhew](mailto:webgoat@owasp.org) * [Project Leader - Direct to Bruce Mayhew](mailto:webgoat@owasp.org)
@ -58,14 +58,14 @@ 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: #### 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: #### 2. Run it using java:
Open a command shell/window, browse to where you downloaded the easy run jar and type: Open a command shell/window, browse to where you downloaded the easy run jar and type:
```Shell ```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 ! #### 3. Browse to [http://localhost:8080/WebGoat](http://localhost:8080/WebGoat) and happy hacking !
@ -73,7 +73,7 @@ java -jar webgoat-container-7.0-SNAPSHOT-war-exec.jar
#### (Optional) If you would like to change the port or other options, use the help command for guidance: #### (Optional) If you would like to change the port or other options, use the help command for guidance:
```Shell ```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 # For Developers
@ -148,7 +148,7 @@ The __maven package__ goal generates an executable .jar file:
cd WebGoat cd WebGoat
mvn package mvn package
cd webgoat-container/target 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 ! Browse to [http://localhost:8080/WebGoat](http://localhost:8080/WebGoat) and happy hacking !
@ -159,7 +159,7 @@ The __maven package__ goal generates a .war file that can deployed into an Appli
```Shell ```Shell
cd WebGoat cd WebGoat
mvn package 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 ! Browse to [http://localhost:8080/WebGoat](http://localhost:8080/WebGoat) and happy hacking !