Added Assignment for Security Questions.

This commit is contained in:
Tobias-Melzer
2018-12-11 12:52:57 +01:00
committed by Nanne Baars
parent 8b61811278
commit bbb0b607b2
12 changed files with 209 additions and 73 deletions

View File

@ -6,6 +6,10 @@ import org.owasp.webgoat.lessons.NewLesson;
import java.util.List;
/**
* @author TMelzer
* @since 30.11.18
*/
public class ChromeDevTools extends NewLesson {
@Override

View File

@ -10,6 +10,11 @@ import org.springframework.web.bind.annotation.ResponseBody;
import java.io.IOException;
/**
* This is just a class used to make the the HTTP request.
* @author TMelzer
* @since 30.11.18
*/
@AssignmentPath("/ChromeDevTools/dummy")
public class NetworkDummy extends AssignmentEndpoint {

View File

@ -11,6 +11,12 @@ import org.springframework.web.bind.annotation.ResponseBody;
import java.io.IOException;
/**
* Assignment where the user has to look through an HTTP Request
* using the Developer Tools and find a specific number.
* @author TMelzer
* @since 30.11.18
*/
@AssignmentPath("/ChromeDevTools/network")
@AssignmentHints({"networkHint1", "networkHint2"})
public class NetworkLesson extends AssignmentEndpoint {