From 42d4fd322d0234b9781c01d711c1a4316ad09210 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/webgoat@335 4033779f-a91e-0410-96ef-6bf7bf53c507 --- .../org/owasp/webgoat/lessons/InsecureLogin.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/main/project/JavaSource/org/owasp/webgoat/lessons/InsecureLogin.java b/main/project/JavaSource/org/owasp/webgoat/lessons/InsecureLogin.java index 532306650..ecf6e63c8 100644 --- a/main/project/JavaSource/org/owasp/webgoat/lessons/InsecureLogin.java +++ b/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("")); + } }