diff --git a/main/project/WebContent/lesson_plans/HowToWork.html b/main/project/WebContent/lesson_plans/HowToWork.html index 9bea759b4..e89eceec4 100644 --- a/main/project/WebContent/lesson_plans/HowToWork.html +++ b/main/project/WebContent/lesson_plans/HowToWork.html @@ -1,31 +1,44 @@ -
Lesson Plan Title: How to Work with WebGoat
-Concept / Topic To Teach:
+
Welcome to a short introduction of WebGoat.
Here you will learn how to use WebGoat and additional tools for the lessons.
-The interface of WebGoat
+
+WebGoat uses Apache Tomcat as server. It is setup to run on localhost. This +configuration is for single user. If you want to use WebGoat in a laboratory or in +class you might need to change the setup. Please refer to the Tomcat Configuration +in the Introduction section.
+ +
1. Here you see all Categories of Lessons in WebGoat. Click on the Categories to see all Lessons in it.
2. This link will give you the technical background to solve the lesson.
3. Do you need some help to find the solution? Here you will find useful hints.
4. Here you will find a complete solution of the selected lesson.
-5. If you want to restart a lesson you can use this link.
-Solve the Lesson
-Always read first the lessons plan. Then try to solve the lesson and if necessary, use the hints. If you cannot solve the lesson using the hints, you may watch the solution. Here every step is explained.
-Read and edit Parameters
-To read and edit Parameters you need a proxy to intercept the HTTP request. Here we use WebScarab. More informations to WebScarab you will get in the Chapter "Useful Tools".
+5. If you want to restart a lesson you can use this link.
+Always read first the lessons plan. Then try to solve the lesson and if necessary, +use the hints. If you cannot solve the lesson using the hints, you may watch the +solution. Here every step is explained.
+
+To read and edit Parameters you need a proxy to intercept the HTTP request.
+Here we use WebScarab. More informations to WebScarab you will get in the
+Chapter "Useful Tools".
After installing WebScarab and making a proxy on localhost we can start.
We have to select "intercept request" in the tab "Intercept". If we send a new HTTP request now, we get a new WebScarab window.
Here we can read and edit the sent parameter. After "Accept changes" the request will be sent to the server.
-
-Read and edit Cookies
+
Often it is not only necessary to change the value of parameters but to change the value of cookies. We use again WebScarab and intercept the request as explained in the last topic.
We again get the new window on sending a HTTP request. On the screenshot you see where we can find cookies and how to edit the values of them.
-
+
Lesson Plan Title: How to Add a New WebGoat Lesson
-Concept / Topic To Teach:
+ +
Adding lessons to WebGoat is very easy. If you have an idea that would be suitable
for a new lesson, follow these few simple instructions to implement it:
* Download the source code from here.
* Setup framework: follow the simple instructions in "HOW TO create the WebGoat workspace.txt" that comes with the project.
* You need to add two files for each new lesson:
- YourLesson.java to org.owasp.webgoat.lessons
- - YourLesson.html to WebContent/lesson_plans
+ - YourLesson.html to WebContent/lesson_plans
General Goal(s):
- The user should be able to learn how to add a new lesson. + diff --git a/main/project/WebContent/lesson_plans/TomcatSetup.html b/main/project/WebContent/lesson_plans/TomcatSetup.html index 1b6e6d25e..e9c025ea9 100644 --- a/main/project/WebContent/lesson_plans/TomcatSetup.html +++ b/main/project/WebContent/lesson_plans/TomcatSetup.html @@ -1,5 +1,5 @@ -WebGoat comes with a sane default setup for Tomcat. This page will explain the setup and which further possibilites you have to setup Tomcat. This is just @@ -8,7 +8,7 @@ refer to the Tomcat documentation. Please note that all solutions are written for the standard setup on port 80. If you use another configuration you have to ajust the solution to your configuration.
-There are two standard Tomcat setups. In this setups WebGoat is only reachable from within the localhost. Both are identically with the only difference @@ -47,12 +47,13 @@ In this example to port 8442:
<!-- Define a SSL HTTP/1.1 Connector on port 8442 --> <Connector address="127.0.0.1" port="8442"... -+ +
THIS MAKES IT POSSIBLE TO REALLY ATTACK YOUR SERVER! DO NOT DO THIS +
THIS MAKES IT POSSIBLE TO REALLY ATTACK YOUR SERVER! DO NOT DO THIS UNTIL YOU KNOW WHAT YOU ARE DOING. THIS CONFIGURATION SHOULD BE ONLY USED IN -SAVE NETWORKS!
+SAVE NETWORKS!By its default configuration WebGoat is only reachable within the localhost. In a laboratory or a class there is maybe the need of having a server and a few clients. diff --git a/main/project/WebContent/lesson_plans/UsefulTools.html b/main/project/WebContent/lesson_plans/UsefulTools.html index 5a772b0b2..67586e959 100644 --- a/main/project/WebContent/lesson_plans/UsefulTools.html +++ b/main/project/WebContent/lesson_plans/UsefulTools.html @@ -1,16 +1,21 @@ -
Lesson Plan Title: Useful Toolst
-Concept / Topic To Teach:
+ -Here we want to present you some useful tools. You will need WebScarab to solve most of the lessons.+Here we want to present you some useful tools. You will need WebScarab +to solve most of the lessons.
+
+As WebGoat, WebScarab is a part of OWASP.
+WebScarab is a framework for analysing applications that
+communicate using the HTTP and HTTPS protocols. Because WebScarab
+operates as an intercepting proxy, we can review and modify requests
+and responses.
Webpage:http://www.owasp.org/index.php/Category:OWASP_WebScarab_Project
-
-Firebug:
+
Firebug is an add-on for the Firefox browser. We can use it to inspect, edit and monitor CSS, HTML and JavaScript.
Webpage:http://www.getfirebug.com
@@ -19,10 +24,12 @@ Webpage:http://www.getfirebu
IEWatch is a tool to analyse HTTP and HTML for users of the Internet Explorer.
Webpage:http://www.iewatch.com
-
-Scanner:
+
There exist a lot of vulnerability scanner for your own web applications. They can find XSS, Injection Flaws and other vulnerabilities. Here the links to two open source scanner.
Nessus:http://www.nessus.org
Paros:http://www.parosproxy.org
+
Add a Proxy on localhost in the settings of your browser. Then you can start WebScarab .We have to select "intercept request" in the tab "Intercept".