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:
* 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 class:
- YourLesson.java to org.owasp.webgoat.lessons
- YourLesson.html to WebContent/lesson_plans
* YourLesson class implmenet LessonAdapter and override the following methods:
- createContent: Use the ECS package to develop HTML presented to the user.
- getCategory: Returns the category for which this lesson belongs (XSS, Injection flaws..etc)
- getHints: List of hints you would like to pass on to the users to point them to right direction.
- getTitle: The title for your new lesson.
- getCredits: Your name goes here.
General Goal(s):
The user should be able to learn how to add a new lesson.