1
0
mirror of synced 2026-08-04 09:17:02 +00:00

Fixes: gh-5190

This commit is contained in:
Rob Winch
2018-04-16 17:51:35 -05:00
parent 6095340e93
commit afdefe7b13
2 changed files with 25 additions and 1 deletions
@@ -314,7 +314,7 @@ public class StrictHttpFirewall implements HttpFirewall {
int length = uri.length();
for (int i = 0; i < length; i++) {
char c = uri.charAt(i);
if (c < '\u0021' || '\u007e' < c) {
if (c < '\u0020' || c > '\u007e') {
return false;
}
}