added _ to the allowed characterset. Allows for usernames with an _ in them

git-svn-id: http://webgoat.googlecode.com/svn/trunk/webgoat@463 4033779f-a91e-0410-96ef-6bf7bf53c507
This commit is contained in:
mayhew64@gmail.com 2012-04-25 18:29:31 +00:00
parent 0429f5b051
commit a987ca7cdc

View File

@ -41,7 +41,7 @@ import org.owasp.webgoat.util.HtmlEncoder;
public class ParameterParser
{
private final static String ALLOWED_CHARACTERS = "$()-?.@!,:;=//+"; // Don't
private final static String ALLOWED_CHARACTERS = "_$()-?.@!,:;=//+"; // Don't
// allow
// #&
// specifically