I’ve triaged the ticket, %25
is a %
and lucee already automatically decodes the url scope, so you are trying to decode what is strictly a badly encoded url.
https://luceeserver.atlassian.net/browse/LDEV-5560?focusedCommentId=60674
Lucee used to be less strict and ACF likewise, but we switched to a standard library with 6, for better support for various other encoding edge cases
https://luceeserver.atlassian.net/browse/LDEV-4648
Hello.
I am working on a legacy app running on ColdFusion and I am using Lucee to try to run it
locally and understand it.
The app is using a Japanese encoding(windows-31j / shift_jis) for html and form post data.
windows31-j is an extension to ascii. The extended characters are 2 bytes long.
The first byte is always greater than 0x80, but the second byte can be in the range
of normal ascii.
To escape such characters, the browser (checked with edge and firefox) uses
the “%” escape notati…
1 Like