The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2025-49128

CVE-2025-49128: Jackson-core Information Disclosure Bug

CVE-2025-49128 is an information disclosure vulnerability in Jackson-core that exposes up to 500 bytes of unintended memory in exception messages. This article covers technical details, affected versions, impact, and mitigation.

Updated: January 22, 2026

CVE-2025-49128 Overview

Jackson-core, the foundational streaming parser and generator library used by Jackson Data Processor, contains an information disclosure vulnerability in versions 2.0.0 through 2.12.x. A flaw in the 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 parameter. The exception message incorrectly reads from the beginning of the array instead of the logical payload start, potentially exposing sensitive data in systems using pooled or reused buffers.

Critical Impact

Systems using buffer pooling frameworks like Netty or Vert.x may inadvertently leak sensitive memory contents through JSON parsing exception messages, potentially exposing authentication tokens, session data, or other sensitive information from previously processed requests.

Affected Products

  • Jackson-core versions 2.0.0 through 2.12.x
  • Applications using Jackson-core with byte array parsing and offset parameters
  • Systems employing buffer pooling (Netty, Vert.x) with Jackson JSON parsing

Discovery Timeline

  • 2025-06-06 - CVE CVE-2025-49128 published to NVD
  • 2025-06-09 - Last updated in NVD database

Technical Details for CVE-2025-49128

Vulnerability Analysis

This vulnerability is classified as CWE-209 (Generation of Error Message Containing Sensitive Information). The core issue resides in how Jackson-core constructs exception messages when JSON parsing fails on byte arrays that have been passed with an offset and length specification.

When an application parses JSON data from a subset of a larger byte array (common in high-performance systems using buffer pools), Jackson is expected to only access the designated portion of the buffer. However, when a parsing error occurs, the _appendSourceDesc method in JsonLocation incorrectly references the beginning of the entire byte array rather than respecting the offset parameter. This causes up to 500 bytes of unrelated buffer content to be embedded in the exception message.

In environments like Netty or Vert.x where buffers are pooled and reused across different requests, this memory region may contain sensitive data from previous operations—such as authentication headers, API keys, or personally identifiable information from other users' requests.

Root Cause

The root cause lies in the JsonLocation._appendSourceDesc method's failure to properly account for the offset parameter when constructing source description content for exception messages. Instead of calculating the correct starting position within the byte array, the method reads from index zero, capturing unrelated memory content that precedes the actual JSON payload being parsed.

Attack Vector

This vulnerability requires local access to trigger, as an attacker would need to either control input that causes parsing exceptions or have access to application logs and error responses that include the malformed exception messages.

The attack scenario involves:

  1. An attacker submits malformed JSON to an application using Jackson-core with buffer pooling
  2. The parsing failure generates an exception message containing up to 500 bytes from the buffer pool
  3. If the application returns this exception message in HTTP responses or logs it with insufficient redaction, sensitive data from other requests may be exposed
text
   * Contributed #573: More customizable TokenFilter inclusion (using `Tokenfilter.Inclusion`)
   (2.12.0)
 
+Greg Wittel (gwittel@github)
+  * Reported #652: Misleading exception for input source when processing byte buffer
+    with start offset
+  (2.13.0)
+
Ferenc Csaky (ferenc-csaky@github)
   * Contributed #677: Introduce O(n^1.5) BigDecimal parser implementation
   (2.13.0)
 
Fabian Meumertzheim (fmeum@github)
   * Reported #692: UTF32Reader ArrayIndexOutOfBoundsException
   (2.13.0)
-

Source: GitHub Commit

Detection Methods for CVE-2025-49128

Indicators of Compromise

  • Exception messages in application logs containing unexpected binary or text data preceding the actual JSON payload
  • HTTP error responses with Jackson parsing exceptions that include buffer content inconsistent with the request payload
  • Reports of sensitive data appearing in unrelated error messages

Detection Strategies

  • Audit application dependencies for jackson-core versions between 2.0.0 and 2.12.x
  • Review exception handling code to identify locations where Jackson parsing exceptions are logged or returned to clients
  • Monitor error logs for parsing exceptions that contain unexpectedly large source descriptions

Monitoring Recommendations

  • Implement log monitoring for Jackson parsing exceptions containing unusual byte sequences or data patterns
  • Configure application performance monitoring to flag exception messages exceeding expected lengths
  • Enable buffer content inspection in staging environments to validate proper offset handling

How to Mitigate CVE-2025-49128

Immediate Actions Required

  • Upgrade jackson-core to version 2.13.0 or later immediately
  • Audit all exception handling code paths that may expose parsing errors to clients or logs
  • Configure applications to suppress source content in Jackson exception messages as an interim measure

Patch Information

This issue was silently fixed in jackson-core version 2.13.0, released on September 30, 2021, via Pull Request #652. All users should upgrade to version 2.13.0 or later. The fix ensures that byte array offset parameters are properly respected when constructing exception message source descriptions.

For detailed information, refer to the GitHub Security Advisory GHSA-wf8f-6423-gfxg.

Workarounds

  • Disable exception message exposure to clients by implementing exception handlers that sanitize or replace Jackson parsing errors before HTTP responses
  • Disable source inclusion in exceptions by configuring Jackson to prevent embedding any source content in exception messages
  • Implement output encoding for all error responses to prevent interpretation of leaked binary data
bash
# Maven dependency update example
# Update pom.xml to use patched version
# <dependency>
#   <groupId>com.fasterxml.jackson.core</groupId>
#   <artifactId>jackson-core</artifactId>
#   <version>2.13.0</version>
# </dependency>

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechJackson

  • SeverityMEDIUM

  • CVSS Score4.0

  • EPSS Probability0.00%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-209
  • Technical References
  • GitHub Commit Update

  • GitHub Pull Request #652

  • GitHub Security Advisory GHSA-wf8f-6423-gfxg
  • Related CVEs
  • CVE-2025-52999: Jackson Core DOS Vulnerability

  • CVE-2023-3894: Jackson-dataformats-text DOS Vulnerability

  • CVE-2020-9548: Jackson-databind Deserialization Vulnerability

  • CVE-2020-35490: Jackson-databind RCE Vulnerability
Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English