Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.0.16
-
None
Description
As reported by [~tallison@apache.org] in related issue. This is a typo in the SASLprep codeĀ
https://tools.ietf.org/html/rfc3454#appendix-C.3
----- Start Table C.3 ----- E000-F8FF; [PRIVATE USE, PLANE 0] F0000-FFFFD; [PRIVATE USE, PLANE 15] 100000-10FFFD; [PRIVATE USE, PLANE 16] ----- End Table C.3 -----
The code is:
return 0xE000 <= codepoint && codepoint <= 0xF8FF
|| 0xF000 <= codepoint && codepoint <= 0xFFFFD
|| 0x100000 <= codepoint && codepoint <= 0x10FFFD;
He missed a "0" in the second line
Attachments
Issue Links
- is related to
-
PDFBOX-4155 Password Security with Unicode needs SASLprep
- Closed
-
TIKA-2858 JAXRS server: allow passwords with special chars (MIME encoded words)
- Open
- links to