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

CVE-2026-40449: Samsung ONE Buffer Overflow Vulnerability

CVE-2026-40449 is a buffer overflow flaw in Samsung Open Source ONE caused by integer overflow in buffer size calculation. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 23, 2026

CVE-2026-40449 Overview

An integer overflow vulnerability exists in Samsung Open Source ONE, a neural network inference framework. The flaw occurs in buffer size calculation when handling large tensors, which could result in out-of-bounds memory access. This vulnerability affects versions prior to commit 1.30.0.

Critical Impact

Integer overflow in buffer size calculation can lead to out-of-bounds memory access, potentially causing application crashes or allowing attackers to corrupt memory when processing maliciously crafted tensor data.

Affected Products

  • Samsung Open Source ONE (versions prior to 1.30.0)
  • Systems utilizing Samsung ONE framework for neural network inference
  • Applications implementing tensor processing with vulnerable ONE library versions

Discovery Timeline

  • April 22, 2026 - CVE CVE-2026-40449 published to NVD
  • April 22, 2026 - Last updated in NVD database

Technical Details for CVE-2026-40449

Vulnerability Analysis

This vulnerability is classified as CWE-190 (Integer Overflow or Wraparound). The flaw exists in the buffer size calculation logic within Samsung Open Source ONE when processing tensor data. When a tensor with excessively large dimensions is provided, the multiplication operation used to calculate the required buffer size can overflow, wrapping around to a smaller value. This results in insufficient memory allocation, and subsequent operations write beyond the allocated buffer boundaries.

The attack requires local access and user interaction (such as opening a malicious model file), but no privileges are required to exploit the vulnerability. The impact includes potential disclosure of sensitive memory contents, modification of adjacent memory regions, and high availability impact through application crashes or denial of service.

Root Cause

The root cause is insufficient validation of tensor dimension sizes before performing arithmetic operations for buffer allocation. When tensor dimensions are multiplied together to calculate total buffer size, the result can exceed the maximum value representable by the integer type used, causing the value to wrap around to a small positive number or even zero. This leads to allocation of an undersized buffer that cannot safely hold the tensor data.

Attack Vector

The attack vector is local, requiring an attacker to craft a malicious model file or input data containing tensors with carefully chosen large dimensions. When a victim application loads or processes this data using a vulnerable version of Samsung ONE, the integer overflow triggers during buffer allocation. The subsequent memory access operations then write or read outside the allocated bounds, potentially leading to information disclosure, memory corruption, or denial of service.

The vulnerability can be exploited through applications that process untrusted neural network models or tensor data without proper validation of input dimensions before passing them to the ONE framework.

Detection Methods for CVE-2026-40449

Indicators of Compromise

  • Unexpected application crashes when loading or processing neural network models
  • Memory corruption errors or segmentation faults in applications using Samsung ONE
  • Anomalous memory allocation patterns showing unusually small allocations for large tensor operations
  • Debug logs indicating buffer overflows or out-of-bounds access in tensor processing functions

Detection Strategies

  • Monitor for application crashes with stack traces pointing to Samsung ONE tensor handling functions
  • Implement runtime bounds checking for buffer operations in development and testing environments
  • Use address sanitizer (ASan) tools during testing to detect out-of-bounds memory access
  • Review logs for allocation failures followed by memory corruption indicators

Monitoring Recommendations

  • Enable memory debugging features when running applications that process untrusted model files
  • Implement file integrity monitoring for neural network model files in production environments
  • Monitor system logs for repeated crashes in applications utilizing Samsung ONE framework
  • Deploy endpoint detection solutions capable of identifying memory corruption exploitation attempts

How to Mitigate CVE-2026-40449

Immediate Actions Required

  • Update Samsung Open Source ONE to version 1.30.0 or later
  • Review applications using Samsung ONE and assess exposure to untrusted input data
  • Implement input validation for tensor dimensions before processing
  • Restrict processing of neural network models to trusted sources only
  • Consider deploying applications with memory protection features enabled (ASLR, stack canaries)

Patch Information

Samsung has addressed this vulnerability in commit 1.30.0 of the Open Source ONE project. The fix implements proper validation of tensor dimensions and adds overflow checks before buffer size calculations. Organizations should update to the patched version as soon as possible. For technical details on the fix, refer to GitHub Pull Request 16481.

Workarounds

  • Validate tensor dimensions at the application level before passing data to Samsung ONE
  • Limit the maximum allowable tensor dimensions to prevent overflow conditions
  • Compile applications with integer overflow detection flags where supported
  • Avoid processing untrusted or unverified neural network model files until patched
bash
# Update Samsung ONE to patched version
git clone https://github.com/Samsung/ONE.git
cd ONE
git checkout 1.30.0
# Follow build instructions for your platform

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechSamsung

  • SeverityMEDIUM

  • CVSS Score6.6

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityHigh
  • CWE References
  • CWE-190
  • Technical References
  • GitHub Pull Request 16481
  • Related CVEs
  • CVE-2026-41666: Samsung ONE Buffer Overflow Vulnerability

  • CVE-2025-62818: Samsung Exynos Buffer Overflow Vulnerability

  • CVE-2025-52909: Samsung Exynos Buffer Overflow Vulnerability

  • CVE-2025-27807: Samsung Exynos Buffer Overflow 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