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.
- Loading branch information
Showing
16 changed files
with
132 additions
and
89 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
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
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
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
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
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
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 |
---|---|---|
@@ -1,43 +1,70 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<body> | ||
<h1>OWASP WebGoat Training tools</h1> | ||
<p> | ||
Use the following links to access the WebGoat and WebWolf applications. | ||
Register a user using WebGoat. The same user can access WebWolf. | ||
</p> | ||
|
||
<h2>Use without special host name entries</h2> | ||
|
||
<table> | ||
<tr> | ||
<td>WebGoat URL</td> | ||
<td><a href="http://127.0.0.1:8080/WebGoat" target="_blank">http://127.0.0.1:8080/WebGoat</a></td> | ||
</tr> | ||
<tr> | ||
<td>WebWolf URL</td> | ||
<td><a href="http://127.0.0.1:9090/WebWolf" target="_blank">http://127.0.0.1:9090/WebWolf</a></td> | ||
</tr> | ||
<table> | ||
|
||
<h2>Use with www.webgoat.local and www.webwolf.local</h2> | ||
<p> | ||
Add the following entries to your local <b><i>hosts</i></b> file on Windows (c:\Windows\System32\drivers\etc\hosts) or Linux (/etc/hosts) | ||
|
||
<pre> | ||
127.0.0.1 www.webgoat.local www.webwolf.local | ||
</pre> | ||
Then use the following URL's: | ||
</p> | ||
<table> | ||
<tr> | ||
<td>WebGoat URL</td> | ||
<td><a href="http://www.webgoat.local/WebGoat" target="_blank">http://www.webgoat.local/WebGoat</a></td> | ||
</tr> | ||
<tr> | ||
<td>WebWolf URL</td> | ||
<td><a href="http://www.webwolf.local/WebWolf" target="_blank">http://www.webwolf.local/WebWolf</a></td> | ||
</tr> | ||
<table> | ||
</body> | ||
<head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<style> | ||
|
||
.p1 { | ||
font-family: Arial, Helvetica, sans-serif; | ||
} | ||
|
||
.webgoat { | ||
float: left; | ||
margin-right: 250px; | ||
text-align: center; | ||
} | ||
|
||
.webwolf { | ||
float: left; | ||
width: 40%; | ||
height: 40%; | ||
text-align: center; | ||
} | ||
|
||
#images { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
body { | ||
|
||
text-align: center; | ||
|
||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
|
||
<h1> | ||
<center> | ||
Landing page for WebGoat and WebWolf | ||
</center> | ||
</h1> | ||
<blockquote class="p1"> | ||
WebGoat is a deliberately insecure web application maintained by <a href="http://www.owasp.org/">OWASP</a> 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. | ||
</blockquote> | ||
|
||
<br/> | ||
|
||
<p class="p1">Click on one of the images to go to WebGoat or WebWolf</p> | ||
|
||
<br/> | ||
<br/> | ||
|
||
<div id="images"> | ||
<a href="http://127.0.0.1:8080/WebGoat" title="Open WebGoat" target="_blank"><img class="webgoat" | ||
src="http://127.0.0.1:8080/WebGoat/css/img/logoBG.jpg"></a> | ||
<a href="http://127.0.0.1:9090/WebWolf" title="Open WebWolf" target="_blank"><img class="webwolf" | ||
src="http://127.0.0.1:9090/images/wolf.png"></a> | ||
</div> | ||
|
||
</body> | ||
</html> |
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
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
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
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
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
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
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
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
2 changes: 2 additions & 0 deletions
2
...omponents/src/main/resources/lessonPlans/en/VulnerableComponents_content5a.adoc
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