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-10543

CVE-2025-10543: Eclipse Paho Go MQTT Info Disclosure

CVE-2025-10543 is an information disclosure vulnerability in Eclipse Paho Go MQTT library versions <=1.5.0 where UTF-8 strings over 65535 bytes may leak data between packet fields. This article covers technical details, impact, and fixes.

Updated: January 22, 2026

CVE-2025-10543 Overview

CVE-2025-10543 is an Integer Overflow vulnerability discovered in the Eclipse Paho Go MQTT v3.1 library (paho.mqtt.golang) affecting versions 1.5.0 and earlier. The vulnerability occurs when UTF-8 encoded strings passed into the library exceed 65535 bytes, causing incorrect encoding due to an unsafe integer conversion. This flaw can result in unexpected content in MQTT packets sent to the server, potentially leaking sensitive data from one packet field into another.

The core issue stems from the library converting data lengths from int64/int32 (depending on CPU architecture) to int16 without proper overflow checks. When the original data exceeds the maximum value representable by int16 (65535), the length field is truncated while the full data is still written, causing packet corruption and potential information disclosure.

Critical Impact

MQTT topic data may leak into message body content in PUBLISH packets, potentially exposing sensitive topic information or causing protocol-level message corruption in IoT and messaging applications.

Affected Products

  • Eclipse Paho Go MQTT Library (paho.mqtt.golang) versions ≤1.5.0
  • Applications using the affected library with UTF-8 strings exceeding 65535 bytes
  • IoT systems and messaging platforms built on the vulnerable library versions

Discovery Timeline

  • December 2, 2025 - CVE-2025-10543 published to NVD
  • December 2, 2025 - Last updated in NVD database

Technical Details for CVE-2025-10543

Vulnerability Analysis

This vulnerability is classified as CWE-197 (Numeric Truncation Error), carrying a CVSS 4.0 score of 6.3 (Medium severity). The attack vector is network-based with low attack complexity, though it requires specific preconditions to be met for successful exploitation.

The CVSS vector string is: CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N

Key CVSS metrics indicate:

  • Attack Vector (AV): Network - exploitable remotely
  • Attack Complexity (AC): Low - no specialized conditions required
  • Attack Requirements (AT): Present - specific preconditions needed
  • Privileges Required (PR): None - no authentication needed
  • Confidentiality Impact (VC): Low - limited information disclosure

The EPSS (Exploit Prediction Scoring System) probability is 0.055% with a percentile ranking of 17.41, indicating a relatively low likelihood of active exploitation in the wild.

Root Cause

The root cause is an unsafe integer type conversion in the library's string encoding logic. When processing UTF-8 strings, the library:

  1. Receives data with a length stored as int64 or int32 (platform-dependent)
  2. Converts this length to int16 without validating that the value fits within the int16 range (0 to 65535)
  3. Writes the truncated int16 length value to the packet
  4. Writes the full original data to the packet

This type coercion without bounds checking means that a 70,000-byte topic name would have its length field set to approximately 4,465 (70000 mod 65536), while all 70,000 bytes of actual data are written to the packet.

Attack Vector

The vulnerability can be triggered through network-accessible MQTT communication channels. An attacker or application inadvertently using oversized UTF-8 strings (topics, client IDs, or other string fields) could cause:

  1. Information Leakage: Topic names exceeding the length boundary may have their content leak into subsequent packet fields, such as the message payload in PUBLISH packets
  2. Protocol Corruption: Malformed packets may cause unexpected behavior in MQTT brokers or other clients parsing the corrupted data
  3. Data Integrity Issues: Message content may become intermixed with topic data, corrupting application-layer information

The vulnerability does not require authentication and can be triggered by any client sending oversized strings through the affected library. For detailed technical information, refer to the Eclipse security vulnerability report.

Detection Methods for CVE-2025-10543

Indicators of Compromise

  • Malformed MQTT packets with mismatched length fields and actual data sizes
  • MQTT broker logs showing parsing errors or unexpected packet structures
  • Application logs indicating message corruption or unexpected topic/payload content
  • Network traffic containing MQTT packets where topic data appears in message body sections

Detection Strategies

Dependency Analysis:

  • Audit Go module dependencies for paho.mqtt.golang versions ≤1.5.0
  • Use go list -m all | grep paho.mqtt.golang to identify vulnerable library versions
  • Implement Software Composition Analysis (SCA) tools in CI/CD pipelines

Network Monitoring:

  • Deploy deep packet inspection for MQTT traffic to identify malformed packets
  • Monitor for MQTT packets with length field discrepancies
  • Alert on PUBLISH packets where topic boundaries appear corrupted

Application-Level Detection:

  • Implement logging for all MQTT string fields exceeding 60,000 bytes
  • Add validation checks for UTF-8 string lengths before library calls
  • Monitor for message integrity failures in consuming applications

Monitoring Recommendations

Organizations using the Eclipse Paho Go MQTT library should implement continuous monitoring:

  1. Inventory Management: Maintain an accurate inventory of all applications using paho.mqtt.golang
  2. Version Tracking: Implement automated tracking of library versions across all deployments
  3. Traffic Analysis: Monitor MQTT broker logs for protocol-level anomalies
  4. Integrity Checks: Implement message integrity validation on critical MQTT communications

SentinelOne Singularity provides visibility into application dependencies and can help identify systems running vulnerable library versions through its asset inventory and vulnerability management capabilities.

How to Mitigate CVE-2025-10543

Immediate Actions Required

  • Upgrade paho.mqtt.golang to a patched version when available from Eclipse
  • Implement input validation to reject UTF-8 strings exceeding 65535 bytes before passing to the library
  • Review application code for any usage patterns that could generate oversized string fields
  • Monitor MQTT traffic for signs of packet corruption or information leakage

Patch Information

The vulnerability was disclosed through the Eclipse security vulnerability reporting process. Organizations should monitor the Eclipse Paho Go MQTT repository for official patch releases and upgrade guidance.

When a patched version becomes available:

  1. Update the dependency in go.mod: require github.com/eclipse/paho.mqtt.golang v1.x.x (patched version)
  2. Run go mod tidy to update the dependency tree
  3. Rebuild and redeploy affected applications
  4. Verify the fix by testing with strings near and exceeding the 65535-byte boundary

Workarounds

Until an official patch is available, implement application-level mitigations:

Input Validation Approach:
Applications should validate all UTF-8 string inputs before passing them to the MQTT library. Implement length checks on topic names, client identifiers, and other string fields to ensure they do not exceed 65535 bytes. This validation should occur at the application boundary, before any data reaches the vulnerable library code.

String Truncation Strategy:
For applications where oversized strings may legitimately occur, implement a truncation mechanism that safely limits string lengths to 65535 bytes while logging truncation events for audit purposes. This approach prevents the integer overflow while maintaining application functionality.

Network Segmentation:
Isolate MQTT communications within trusted network segments to limit potential exposure of leaked information. Implement TLS encryption for all MQTT traffic to protect data in transit, regardless of packet-level corruption.

bash
# Check current paho.mqtt.golang version in your Go project
go list -m -versions github.com/eclipse/paho.mqtt.golang

# Update to latest version (when patch is available)
go get github.com/eclipse/paho.mqtt.golang@latest
go mod tidy

# Verify updated version
go list -m github.com/eclipse/paho.mqtt.golang

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechEclipse Paho

  • SeverityMEDIUM

  • CVSS Score6.3

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-197
  • Technical References
  • Gitlab Eclipse
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal Vulnerability
Default Legacy - Prefooter | 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