Skip to content

Commit 1fd2fd7

Browse files
committed
Fixed bug WEB-169
1 parent e77dda3 commit 1fd2fd7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/owasp/webgoat/lessons/PasswordStrength.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,12 @@ protected Category getDefaultCategory()
189189
public String getInstructions(WebSession s)
190190
{
191191
String instructions = "The accounts of your web application are only as save as the passwords. "
192-
+ "For this exercise, your job is to test several passwords on <a href=\"https://howsecureismypassword.net\" target=\"_blank\">https://howsecureismypassword.net</a>. "
192+
+ "For this exercise, your job is to test several passwords on <a onclick=\"window.open(this.href,\'_blank\');return false;\" href=\"https://howsecureismypassword.net\">https://howsecureismypassword.net</a>. "
193193
+ " You must test all 6 passwords at the same time...<br>"
194194
+ "<b> On your applications you should set good password requirements! </b>";
195195
return (instructions);
196196
}
197-
197+
198198
/**
199199
* Gets the title attribute of the HelloScreen object
200200
*

0 commit comments

Comments
 (0)