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;