CVE-2026-54911Medium· 6.5▾ SunlitUltraJSON: Malformed/Truncated UTF-8 Accepted and Silently Rewritten in ujson.dumps()
▾ Sunlit zone — Low / medium · no exploitation signal
impact 35.8 · likelihood 0.1 · exploitation 0
Need a working PoC? Pro members can cast a request and our team develops one — it lands right here.
Exploit-prediction probability, daily snapshots since Jul 4.
Disclosure to exploitation, from the record and what we observed since indexing it.
Disclosed via OSV
0.3%
0.3% → 0.4%
Last analysed / modified upstream
ujson.dumps() (or ujson.dump() or ujson.encode()) have a reject_bytes=False option. When set, they may accept malformed or truncated UTF-8 byte sequences, silently rewriting them into different Unicode characters instead of rejecting them. This leads to input validation bypass and data integrity issues.
The expected behavior is that for x being any bytes string, x == ujson.loads(ujson.dumps(x, reject_bytes=False)).encode(errors="surrogatepass") should always either be true or ujson.dumps() will throw an exception. In reality, some strings which should've been errors are silently rewritten as other strings:
b'\xcf\x13' -> b'\xcf\x93'b'\xc3' -> b'\xc3\x80'b'\xf0\x90\x94' -> b"\xf0\x90\x94\x80inxcontrib'"An application relying on reject_bytes=False for UTF-8 handling may experience:
The missing/broken UTF-8 validation checks were added/fixed in https://github.com/ultrajson/ultrajson/commit/169eaf36b1116fece5034ee79a7a0ef3f6deedcf. We recommend upgrading to UltraJSON 5.13.0.
Decoding bytes to strings in Python before passing them to ujson.dumps() avoids this issue.
ujson < 5.13.0Upgrade to a patched release:
ujson 5.13.0Connected by shared product, vendor, weakness, or advisory.
CVE-2026-32874High· 7.5UltraJSON has a Memory Leak parsing large integers allows DoS
CVE-2026-32875High· 7.5UltraJSON has an integer overflow handling large indent leads to buffer overflow or infinite loop
CVE-2026-44660High· 7.5UltraJSON has a Memory Leak in ujson.dump() on Write Failure
CVE-2022-31116High· 7.5Incorrect handling of invalid surrogate pair characters
CVE-2022-31117Medium· 5.9Potential double free of buffer during string decoding
CVE-2021-45105Medium· 5.9Apache Log4j2 versions 2.0-alpha1 through 2.16.0 (excluding 2.12.3 and 2.3.1) did not protect from uncontrolled recursion from self-referential lookups