diff --git a/webgoat/main/project/JavaSource/org/owasp/webgoat/lessons/InsecureLogin.java b/webgoat/main/project/JavaSource/org/owasp/webgoat/lessons/InsecureLogin.java index 532306650..ecf6e63c8 100644 --- a/webgoat/main/project/JavaSource/org/owasp/webgoat/lessons/InsecureLogin.java +++ b/webgoat/main/project/JavaSource/org/owasp/webgoat/lessons/InsecureLogin.java @@ -224,7 +224,7 @@ public class InsecureLogin extends SequentialLessonAdapter String instructions = ""; instructions = "For this lesson you need to " + "have a server client setup. Please refer to the" + - "Tomcat Setup Section in Introduction.

Stage" + + "Tomcat Configuration in the Introduction section.

Stage" + stage + ": "; if (stage == 1) { @@ -500,5 +500,10 @@ public class InsecureLogin extends SequentialLessonAdapter return logoutDiv; } + + public Element getCredits() + { + return super.getCustomCredits("Created by: Reto Lippuner, Marcel Wirth", new StringElement("")); + } }