Formatting according to OWASP WebGoat Java Style
git-svn-id: http://webgoat.googlecode.com/svn/trunk/webgoat@359 4033779f-a91e-0410-96ef-6bf7bf53c507
This commit is contained in:
@ -125,13 +125,14 @@ public class UncheckedEmail extends LessonAdapter
|
||||
sendSimulatedMail(ec, to, subject, message);
|
||||
}
|
||||
}
|
||||
|
||||
if(to.length() > 0 && "webgoat.admin@owasp.org".equals(to) && message.contains("<script"))
|
||||
|
||||
if (to.length() > 0 && "webgoat.admin@owasp.org".equals(to) && message.contains("<script"))
|
||||
{
|
||||
s.setMessage("The attack worked! Now try to attack another person than the admin.");
|
||||
}
|
||||
|
||||
// only complete the lesson if they changed the "to" hidden field and they sen a scripttag in the message
|
||||
// only complete the lesson if they changed the "to" hidden field and they sen a
|
||||
// scripttag in the message
|
||||
if (to.length() > 0 && !"webgoat.admin@owasp.org".equals(to) && message.contains("<script"))
|
||||
{
|
||||
makeSuccess(s);
|
||||
|
Reference in New Issue
Block a user