Home
Trends
Vulnerabilities
News
Researchers
Why dbugs?

Gwittel

#52516of 53,632
4Total CVSS
Vulnerabilities · 1
PT-2025-24332
4.0
2025-06-06
Unknown · Jackson-Core · CVE-2025-49128
**Name of the Vulnerable Software and Affected Versions** jackson-core versions 2.0.0 through 2.13.0 **Description** A flaw in jackson-core's `JsonLocation. appendSourceDesc` method allows up to 500 bytes of unintended memory content to be included in exception messages. When parsing JSON from a byte array with an offset and length, the exception message incorrectly reads from the beginning of the array instead of the logical payload start. This results in possible information disclosure in systems using pooled or reused buffers, like Netty or Vert.x. The issue particularly impacts server applications using pooled byte buffers, frameworks that surface parse errors in HTTP responses, and default Jackson settings. **Recommendations** To resolve the issue, upgrade to jackson-core version 2.13.0 or later. If upgrading is not immediately possible, applications can mitigate the issue by disabling exception message exposure to clients to avoid returning parsing exception messages in HTTP responses. Additionally, disable source inclusion in exceptions by setting `jsonFactory.disable(JsonFactory.Feature.INCLUDE SOURCE IN LOCATION)` to prevent Jackson from embedding any source content in exception messages, avoiding leakage.