From 60ed5d7020f239296e979bad7d9215f12ea1f611 Mon Sep 17 00:00:00 2001 From: nbaars Date: Tue, 6 Jan 2015 13:01:17 +0100 Subject: [PATCH] Restoring conf management page, server crashed during startup --- .../webapp/lessons/ConfManagement/config.jsp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/main/webapp/lessons/ConfManagement/config.jsp diff --git a/src/main/webapp/lessons/ConfManagement/config.jsp b/src/main/webapp/lessons/ConfManagement/config.jsp new file mode 100644 index 000000000..31b51e2f1 --- /dev/null +++ b/src/main/webapp/lessons/ConfManagement/config.jsp @@ -0,0 +1,19 @@ +<%@ page language="java" contentType="text/html; charset=ISO-8859-1" + pageEncoding="ISO-8859-1"%> +<%@page import="org.owasp.webgoat.session.WebSession"%> +<% +WebSession webSession = ((WebSession)session.getAttribute("websession")); +%> + + + + +Configuration Page + + +<% response.sendRedirect(webSession.getCurrentLesson().getLink() + + "&succeeded=yes"); +%> + + + \ No newline at end of file