From 8db9ff30be29824c7ddbea696af029cd36d1f81c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Veres-Szentkir=C3=A1lyi?= Date: Tue, 29 Nov 2022 15:15:11 +0100 Subject: [PATCH] Fixed incorrect word while "wear" and "were" have similar pronunciation, one of them is better here than the other :) --- .../lessons/passwordreset/SecurityQuestionAssignment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/owasp/webgoat/lessons/passwordreset/SecurityQuestionAssignment.java b/src/main/java/org/owasp/webgoat/lessons/passwordreset/SecurityQuestionAssignment.java index 83af61934..882b47bd2 100644 --- a/src/main/java/org/owasp/webgoat/lessons/passwordreset/SecurityQuestionAssignment.java +++ b/src/main/java/org/owasp/webgoat/lessons/passwordreset/SecurityQuestionAssignment.java @@ -63,7 +63,7 @@ public class SecurityQuestionAssignment extends AssignmentEndpoint { questions.put("What are the last 5 digits of your drivers license?", "Is subject to change, and the last digit of your driver license might follow a specific pattern. (For example your birthday)."); questions.put("What was your childhood nickname?", "Not all people had a nickname."); questions.put("Who was your childhood hero?", "Most Heroes we had as a child where quite obvious ones, like Superman for example."); - questions.put("On which wrist do you were your watch?", "There are only to possible real answers, so really easy to guess."); + questions.put("On which wrist do you wear your watch?", "There are only to possible real answers, so really easy to guess."); questions.put("What is your favorite color?", "Can easily be guessed."); }