Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-2026-24783

CVE-2026-24783: Soroban Fixed-Point Math Library Flaw

CVE-2026-24783 is a rounding logic flaw in soroban-fixed-point-math library affecting mulDiv function when handling negative values. This post covers the technical details, affected versions, impact, and mitigation.

Published: January 30, 2026

CVE-2026-24783 Overview

CVE-2026-24783 is a numeric truncation error vulnerability in soroban-fixed-point-math, a fixed-point math library for Soroban smart contracts. In versions 1.3.0 and 1.4.0, the mulDiv(x, y, z) function incorrectly handles cases where both the intermediate product (x * y) and the divisor (z) are negative. The flawed logic assumes that if the intermediate product is negative, the final result must also be negative, completely neglecting the sign of the divisor z. This results in rounding being applied in the wrong direction for calculations where both x * y and z are negative.

Critical Impact

Smart contracts using this library for financial calculations may produce incorrect results when handling negative values, potentially leading to fund miscalculations and integrity violations in decentralized finance (DeFi) applications built on Soroban.

Affected Products

  • soroban-fixed-point-math version 1.3.0
  • soroban-fixed-point-math version 1.4.0
  • All signed FixedPoint and SorobanFixedPoint implementations (i64, i128, I256)

Discovery Timeline

  • 2026-01-27 - CVE CVE-2026-24783 published to NVD
  • 2026-01-29 - Last updated in NVD database

Technical Details for CVE-2026-24783

Vulnerability Analysis

The vulnerability exists in the core mathematical logic of the mulDiv(x, y, z) function, which is designed to compute (x * y) / z with proper handling of intermediate overflows. The function is fundamental to fixed-point arithmetic operations in smart contracts.

The root issue lies in how the function determines the sign of the result and applies rounding. When calculating division with negative numbers, the mathematical rule states that a negative divided by a negative yields a positive result. However, the vulnerable implementation only checks if the intermediate product (x * y) is negative to determine the result's sign, completely ignoring the sign of the divisor z.

This oversight causes fixed_div_floor and fixed_div_ceil functions to apply rounding in the wrong direction when both the intermediate product and divisor are negative. In financial applications, incorrect rounding can compound over many transactions, leading to systematic calculation errors.

Root Cause

The vulnerability stems from CWE-682 (Incorrect Calculation). The mulDiv function's sign determination logic is incomplete - it only considers the sign of the intermediate product (x * y) when deciding whether the result should be negative and how to apply rounding. This fails to account for the fundamental mathematical property that dividing two negative numbers produces a positive result.

Attack Vector

The attack vector is network-based, allowing remote exploitation without authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Identifying smart contracts that use vulnerable versions of soroban-fixed-point-math
  2. Crafting transactions that invoke fixed_div_floor or fixed_div_ceil with carefully chosen negative values
  3. The incorrect rounding behavior produces calculation errors that could be exploited for financial gain
  4. Since smart contracts are immutable once deployed, affected contracts remain vulnerable until upgraded

The vulnerability affects data integrity rather than confidentiality or availability, making it particularly dangerous in financial contexts where precise calculations are critical.

text
 rust-version = "1.89"
 
 [dependencies]
-soroban-sdk = { version = "23.0.2" }
+soroban-sdk = { version = "23" }

Source: GitHub Commit Changes

The patch updates dependencies and includes improved edge case handling along with an enhanced test suite to prevent similar issues.

Detection Methods for CVE-2026-24783

Indicators of Compromise

  • Unexpected calculation results in smart contracts performing fixed-point arithmetic with negative values
  • Discrepancies in financial balances or token amounts that accumulate over time
  • Anomalous transaction outcomes when fixed_div_floor or fixed_div_ceil functions process negative operands

Detection Strategies

  • Audit smart contract dependencies to identify usage of soroban-fixed-point-math versions 1.3.0 or 1.4.0
  • Implement unit tests specifically targeting division operations with negative intermediate products and negative divisors
  • Review smart contract transaction logs for unexpected calculation patterns involving signed integer operations

Monitoring Recommendations

  • Monitor deployed contracts for transactions that may trigger the vulnerable code path with negative operands
  • Implement logging for division operations in affected contracts to detect calculation anomalies
  • Track financial discrepancies that may indicate exploitation of the rounding error

How to Mitigate CVE-2026-24783

Immediate Actions Required

  • Upgrade soroban-fixed-point-math to version 1.3.1 or 1.4.1 immediately
  • Audit all smart contracts using the vulnerable library versions for potential financial impact
  • Review historical transactions for contracts using affected versions to identify any exploitation

Patch Information

The vulnerability has been patched in versions 1.3.1 and 1.4.1 of soroban-fixed-point-math. The fix corrects the sign determination logic in the mulDiv function to properly account for the sign of both the intermediate product and the divisor.

Security patch resources:

  • GitHub Release v1.3.1
  • GitHub Release v1.4.1
  • GitHub Security Advisory GHSA-x5m4-43jf-hh65

Workarounds

  • No known workarounds are available for this vulnerability
  • Upgrading to patched versions (1.3.1 or 1.4.1) is the only remediation option
  • Consider temporarily restricting operations that may involve negative values in affected contracts until upgrade is complete
bash
# Update Cargo.toml dependency to patched version
# Change from vulnerable version:
# soroban-fixed-point-math = "1.3.0" or "1.4.0"
# To patched version:
soroban-fixed-point-math = "1.3.1"  # or "1.4.1" depending on your version track

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechSoroban Fixed Point Math

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.01%

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

  • GitHub Release v1.3.1

  • GitHub Release v1.4.1

  • GitHub Security Advisory GHSA-x5m4-43jf-hh65
  • Latest CVEs
  • CVE-2025-52793: Esselink.nu Settings CSRF Vulnerability

  • CVE-2025-52772: Virtual Moderator CSRF Vulnerability

  • CVE-2025-48279: WC MyParcel Belgium XSS Vulnerability

  • CVE-2025-39381: KiotViet Sync CSRF 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