Changeset d12b531 for apps/jetty
- Timestamp:
- Apr 14, 2018 1:25:25 PM (3 years ago)
- Branches:
- master
- Children:
- ffad52e
- Parents:
- 941db3a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/jetty/java/src/net/i2p/servlet/filters/XSSRequestWrapper.java
r941db3a rd12b531 25 25 private static final String WIN_PATTERN = "^[\\p{L}\\p{Nd}.,:\\-\\/+=~\\[\\]?@_ \r\n\\\\]*$"; 26 26 private static final Pattern parameterValuePattern = Pattern.compile(SystemVersion.isWindows() ? WIN_PATTERN : NON_WIN_PATTERN); 27 private static final Pattern headerValuePattern = Pattern.compile("^[a-zA-Z0-9()\\-=\\*\\.\\?;,+\\/:&_ ]*$");27 private static final Pattern headerValuePattern = Pattern.compile("^[a-zA-Z0-9()\\-=\\*\\.\\?;,+\\/:&_ \"]*$"); 28 28 private static final String NOFILTER = "nofilter_"; 29 29
Note: See TracChangeset
for help on using the changeset viewer.