From a20532921a9fa94aabfe6b171eac34a11f11522c Mon Sep 17 00:00:00 2001 From: b1rd0fb3auty14 Date: Wed, 22 Jun 2016 22:46:31 -0400 Subject: [PATCH] How to create a Legacy Lesson - instruction edit #177 Commit to fix the following issues. 1. Update the user guide to point to the wiki. 2. Add the slack channel 3. Change the feedback email to point to the group mailing list. --- .../org/owasp/webgoat/lessons/LessonAdapter.java | 15 ++++++++++----- .../org/owasp/webgoat/session/WebgoatContext.java | 4 ++-- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/webgoat-container/src/main/java/org/owasp/webgoat/lessons/LessonAdapter.java b/webgoat-container/src/main/java/org/owasp/webgoat/lessons/LessonAdapter.java index cf64c520b..ef9f0f7fd 100644 --- a/webgoat-container/src/main/java/org/owasp/webgoat/lessons/LessonAdapter.java +++ b/webgoat-container/src/main/java/org/owasp/webgoat/lessons/LessonAdapter.java @@ -70,11 +70,16 @@ public abstract class LessonAdapter extends AbstractLesson { ec .addElement(new StringElement( "Lesson are simple to create and very little coding is required.   " - + "In fact, most lessons can be created by following the easy to use instructions in the " - + "WebGoat User Guide.  " - + "If you would prefer, send your lesson ideas to " - + getWebgoatContext().getFeedbackAddressHTML())); - + + "In fact, most lessons can be created by following the easy to use instructions by going to the WebGoat wiki page " + + "WebGoat Wiki Page  " + + "If you would prefer, send your lesson ideas to " + + getWebgoatContext().getFeedbackAddressHTML()) + + " Note: you will need to register at " + + "the following link to use the feedback tool: " + + "List Registration  " + + "Finally, OWASP has a slack channel. You can register at the following link: " + + "OWASP Slack Channel"); + try (InputStream is = Thread.currentThread().getContextClassLoader() .getResourceAsStream("New Lesson Instructions.txt")) { if (is != null) { diff --git a/webgoat-container/src/main/java/org/owasp/webgoat/session/WebgoatContext.java b/webgoat-container/src/main/java/org/owasp/webgoat/session/WebgoatContext.java index 7ab008868..f7e0eca66 100644 --- a/webgoat-container/src/main/java/org/owasp/webgoat/session/WebgoatContext.java +++ b/webgoat-container/src/main/java/org/owasp/webgoat/session/WebgoatContext.java @@ -92,9 +92,9 @@ public class WebgoatContext { private boolean codingExercises = false; - private String feedbackAddress = "webgoat@owasp.org"; + private String feedbackAddress = "owasp-webgoat@list.owasp.org"; - private String feedbackAddressHTML = "webgoat@owasp.org"; + private String feedbackAddressHTML = "owasp-webgoat@list.owasp.org"; private boolean isDebug = false;