diff --git a/ webgoat/main/project/WebContent/webgoat.jsp b/ webgoat/main/project/WebContent/webgoat.jsp index 45aef327b..50dc4daee 100644 --- a/ webgoat/main/project/WebContent/webgoat.jsp +++ b/ webgoat/main/project/WebContent/webgoat.jsp @@ -1,5 +1,7 @@ <%@ page contentType="text/html; charset=ISO-8859-1" language="java" errorPage="" %> +<%@page import="org.owasp.webgoat.session.WebSession"%> +<% WebSession webSession = ((WebSession)session.getAttribute("websession")); %> @@ -18,7 +20,7 @@

This program is a demonstration of common web application flaws. The exercises are intended to provide hands on experience with application penetration testing techniques. The WebGoat project is lead by Bruce Mayhew. Please send all - comments to Bruce at WebGoat@G2-Inc.com.

+ comments to Bruce at <%= webSession.getWebgoatContext().getFeedbackAddress() %>.

diff --git a/ webgoat/main/project/WebContent/webgoat_challenge.jsp b/ webgoat/main/project/WebContent/webgoat_challenge.jsp index 1901cd668..9d4b4fe56 100644 --- a/ webgoat/main/project/WebContent/webgoat_challenge.jsp +++ b/ webgoat/main/project/WebContent/webgoat_challenge.jsp @@ -1,5 +1,7 @@ <%@ page contentType="text/html; charset=ISO-8859-1" language="java" errorPage="" %> +<%@page import="org.owasp.webgoat.session.WebSession"%> +<% WebSession webSession = ((WebSession)session.getAttribute("websession")); %> @@ -18,7 +20,7 @@

This program is a demonstration of common web application flaws. The exercises are intended to provide hands on experience with application penetration testing techniques. The WebGoat project is lead by Bruce Mayhew. Please send all - comments to Bruce at WebGoat@G2-Inc.com.

+ comments to Bruce at <%= webSession.getWebgoatContext().getFeedbackAddress() %>.