Skip to content

Commit 930195c

Browse files
added _ to the allowed characterset. Allows for usernames with an _ in them
git-svn-id: http://webgoat.googlecode.com/svn/trunk@463 4033779f-a91e-0410-96ef-6bf7bf53c507
1 parent b81c7b2 commit 930195c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webgoat/src/main/java/org/owasp/webgoat/session/ParameterParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
public class ParameterParser
4242
{
4343

44-
private final static String ALLOWED_CHARACTERS = "$()-?.@!,:;=//+"; // Don't
44+
private final static String ALLOWED_CHARACTERS = "_$()-?.@!,:;=//+"; // Don't
4545
// allow
4646
// #&
4747
// specifically

0 commit comments

Comments
 (0)