diff options
author | Ruediger Pluem <rpluem@apache.org> | 2023-04-28 08:20:27 +0200 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2023-04-28 08:20:27 +0200 |
commit | 9b1964bf455910aac9aeea85710ed4d63f941812 (patch) | |
tree | 90822d3c64b4d8edb2b621847aea5f11cf65f8b1 /changes-entries | |
parent | make test cases for mod_tls work, do not clear gen directory on every invocation (diff) | |
download | apache2-9b1964bf455910aac9aeea85710ed4d63f941812.tar.xz apache2-9b1964bf455910aac9aeea85710ed4d63f941812.zip |
* In the reverse proxy case when we only want to keep encoded slashes untouched
we can have decoded '%''s in the URI that got sent to us in the original URL
as %25. Don't error out in this case but just fall through and have them
encoded to %25 when forwarding to the backend.
PR: 66580
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1909464 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'changes-entries')
-rw-r--r-- | changes-entries/pr66580.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changes-entries/pr66580.txt b/changes-entries/pr66580.txt new file mode 100644 index 0000000000..f011fe79d9 --- /dev/null +++ b/changes-entries/pr66580.txt @@ -0,0 +1,3 @@ + *) mod_proxy: In case that AllowEncodedSlashes is set to NoDecode do not + fail on literal '%' when doing the encoding of the backend URL. + PR 66580 [Ruediger Pluem] |