UltraJSON: Malformed/Truncated UTF-8 Accepted and Silently Rewritten in ujson.dumps()
Description
Summary
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.
Details
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:
- Invalid continuation bytes are replaced with valid ones:
b'\xcf\x13'->b'\xcf\x93' - Unterminated sequence completes the sequence:
b'\xc3'->b'\xc3\x80' - ... or leads to reading past the end of string:
b'\xf0\x90\x94'->b"\xf0\x90\x94\x80inxcontrib'"
Impact
An application relying on reject_bytes=False for UTF-8 handling may experience:
- Data integrity issues
- Experience validation bypass if said validation occurs before serialisation
Remediation
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.
Workarounds
Decoding bytes to strings in Python before passing them to ujson.dumps() avoids this issue.
AI Insight
LLM-synthesized narrative grounded in this CVE's description and references.
Affected packages
Versions sourced from the GitHub Security Advisory.
| Package | Affected versions | Patched versions |
|---|---|---|
ujsonPyPI | < 5.13.0 | 5.13.0 |
Affected products
25- osv-coords24 versionspkg:apk/chainguard/datahub-ingestionpkg:apk/chainguard/openstack-glance-2025.1pkg:apk/chainguard/openstack-glance-2025.1-fipspkg:apk/chainguard/openstack-glance-2025.2pkg:apk/chainguard/openstack-glance-2025.2-fipspkg:apk/chainguard/openstack-glance-2026.1-fipspkg:apk/chainguard/openstack-horizon-2025.1pkg:apk/chainguard/openstack-horizon-2025.1-fipspkg:apk/chainguard/openstack-horizon-2025.2pkg:apk/chainguard/openstack-horizon-2025.2-fipspkg:apk/chainguard/openstack-horizon-2026.1pkg:apk/chainguard/openstack-horizon-2026.1-fipspkg:apk/chainguard/openstack-keystone-2025.1pkg:apk/chainguard/openstack-keystone-2025.1-fipspkg:apk/chainguard/openstack-keystone-2025.2pkg:apk/chainguard/openstack-keystone-2025.2-fipspkg:apk/chainguard/openstack-keystone-2026.1pkg:apk/chainguard/openstack-keystone-2026.1-fipspkg:apk/chainguard/openstack-placement-2025.1pkg:apk/chainguard/openstack-placement-2025.1-fipspkg:apk/chainguard/openstack-placement-2025.2pkg:apk/chainguard/openstack-placement-2025.2-fipspkg:apk/chainguard/openstack-placement-2026.1pkg:apk/chainguard/openstack-placement-2026.1-fips
< 1.6.0-r4+ 23 more
- (no CPE)range: < 1.6.0-r4
- (no CPE)range: < 30.2.0_git20260616-r5
- (no CPE)range: < 30.2.0_git20260617-r2
- (no CPE)range: < 31.1.0_git20260617-r4
- (no CPE)range: < 31.1.0_git20260617-r3
- (no CPE)range: < 32.0.0_git20260617-r4
- (no CPE)range: < 25.3.2_git20260617-r3
- (no CPE)range: < 25.3.2_git20260617-r2
- (no CPE)range: < 25.5.2_git20260617-r3
- (no CPE)range: < 25.5.2_git20260617-r3
- (no CPE)range: < 25.7.3_git20260624-r2
- (no CPE)range: < 25.7.3_git20260617-r2
- (no CPE)range: < 27.0.1_git20260618-r5
- (no CPE)range: < 27.0.1_git20260618-r5
- (no CPE)range: < 28.0.1_git20260618-r4
- (no CPE)range: < 28.0.1_git20260618-r2
- (no CPE)range: < 29.0.1_git20260616-r5
- (no CPE)range: < 29.0.1_git20260617-r3
- (no CPE)range: < 13.0.0_git20260617-r4
- (no CPE)range: < 13.0.0_git20260617-r3
- (no CPE)range: < 14.0.0_git20260617-r4
- (no CPE)range: < 14.0.0_git20260309-r3
- (no CPE)range: < 15.0.0_git20260617-r4
- (no CPE)range: < 15.0.0_git20260617-r2
Patches
Vulnerability mechanics
References
4News mentions
0No linked articles in our index yet.