Home
Home
Trends
Trends
Vulnerabilities
Vulnerabilities
News
News
Researchers
Researchers
Why dbugs?
Why dbugs?
Settings

Gwittel

#53891of 55,137
4Total CVSS
Vulnerabilities · 1
PT-2025-24332
4.0
2025-06-06
Vert.X · Vert.X · 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.