From 8182db6dc489d87cc67f49e1fc1eaa8002cba644 Mon Sep 17 00:00:00 2001 From: "wirth.marcel" Date: Mon, 14 Apr 2008 08:35:33 +0000 Subject: [PATCH] InsecureLogin Credits added. Instructions changed git-svn-id: http://webgoat.googlecode.com/svn/trunk@335 4033779f-a91e-0410-96ef-6bf7bf53c507 --- .../org/owasp/webgoat/lessons/InsecureLogin.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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("")); + } }