forked from WebGoat/WebGoat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request WebGoat#203 from span/readme-7.0.1
Update package references in readme
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]) | ||
|
@@ -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 | ||
|
@@ -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 ! | ||
|
@@ -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 ! | ||
|