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

CVE-2026-41445: KissFFT Buffer Overflow Vulnerability

CVE-2026-41445 is a buffer overflow vulnerability in KissFFT caused by integer overflow in kiss_fftndr_alloc(). Attackers can exploit this to write beyond allocated buffers. This article covers technical details, impact, and mitigation.

Published: April 23, 2026

CVE-2026-41445 Overview

KissFFT before commit 8a8e66e contains an integer overflow vulnerability in the kiss_fftndr_alloc() function within kiss_fftndr.c. The allocation size calculation dimOther*(dimReal+2)*sizeof(kiss_fft_scalar) overflows signed 32-bit integer arithmetic before being widened to size_t, causing malloc() to allocate an undersized buffer. Attackers can trigger a heap buffer overflow by providing crafted dimensions that cause the multiplication to exceed INT_MAX, allowing writes beyond the allocated buffer region when kiss_fftndr() processes the data.

Critical Impact

Exploitation of this integer overflow can result in heap buffer overflow, potentially leading to arbitrary code execution, denial of service, or memory corruption in applications using the KissFFT library.

Affected Products

  • KissFFT versions prior to commit 8a8e66e33d692bad1376fe7904d87d767730537f
  • Applications integrating vulnerable versions of the KissFFT library
  • Audio/signal processing software utilizing KissFFT for FFT operations

Discovery Timeline

  • 2026-04-20 - CVE-2026-41445 published to NVD
  • 2026-04-20 - Last updated in NVD database

Technical Details for CVE-2026-41445

Vulnerability Analysis

This vulnerability stems from improper integer handling in the FFT allocation routine. The kiss_fftndr_alloc() function performs dimension calculations using signed 32-bit integer arithmetic. When an attacker provides carefully crafted dimension values, the multiplication operation can wrap around due to integer overflow, resulting in a small positive value instead of the expected large allocation size.

The undersized buffer returned by malloc() is then used to store FFT computation results. When kiss_fftndr() subsequently processes data using the full expected dimensions, it writes beyond the allocated memory region, causing a classic heap buffer overflow condition (CWE-122).

This vulnerability is particularly concerning for applications that accept untrusted input for FFT dimension parameters, such as audio processing libraries, image manipulation tools, or scientific computing applications.

Root Cause

The root cause is the use of int (signed 32-bit) type for the dimOther variable and the prod() helper function return value. When multiplying large dimension values together, the result can exceed INT_MAX (2,147,483,647), causing signed integer overflow which is undefined behavior in C. The wrapped value is then used as the size argument to malloc(), resulting in an undersized allocation.

Attack Vector

An attacker can exploit this vulnerability by providing malicious FFT dimension parameters to any application using the vulnerable KissFFT library. The attack requires:

  1. Supplying dimension values where their product exceeds INT_MAX
  2. The application must pass these dimensions to kiss_fftndr_alloc()
  3. When kiss_fftndr() processes data using these dimensions, the heap overflow occurs

The network attack vector applies when applications accept FFT parameters from network sources, such as audio streaming services or remote data processing APIs.

c
 struct kiss_fftndr_state
 {
     int dimReal;
-    int dimOther;
+    size_t dimOther;
     kiss_fftr_cfg cfg_r;
     kiss_fftnd_cfg cfg_nd;
     void * tmpbuf;
 };

-static int prod(const int *dims, int ndims)
+static size_t prod(const int *dims, int ndims)
 {
-    int x=1;
+    size_t x=1;
     while (ndims--) 
         x *= *dims++;
     return x;

Source: GitHub Commit Update

The patch changes dimOther and the prod() function return type from int to size_t, ensuring proper handling of large dimension values without signed integer overflow.

Detection Methods for CVE-2026-41445

Indicators of Compromise

  • Abnormal memory allocation patterns in applications using KissFFT
  • Application crashes with heap corruption errors during FFT operations
  • Unexpected dimension values in FFT function call logs exceeding typical use cases
  • Memory access violations in kiss_fftndr() or related functions

Detection Strategies

  • Monitor for unusually large dimension parameters passed to FFT allocation functions
  • Implement static code analysis to identify KissFFT library versions in use
  • Use address sanitizers (ASAN) during development to detect heap buffer overflows
  • Deploy runtime memory protection mechanisms to detect out-of-bounds writes

Monitoring Recommendations

  • Enable application crash monitoring for heap-related exceptions
  • Log FFT dimension parameters for anomaly detection in production environments
  • Implement input validation metrics to track dimension value ranges
  • Monitor for memory corruption indicators in signal processing pipelines

How to Mitigate CVE-2026-41445

Immediate Actions Required

  • Update KissFFT to commit 8a8e66e33d692bad1376fe7904d87d767730537f or later
  • Audit applications for usage of kiss_fftndr_alloc() with untrusted input
  • Implement input validation to reject unreasonably large dimension values
  • Consider temporarily disabling affected functionality if patching is not immediately possible

Patch Information

The vulnerability has been addressed in the KissFFT repository. The fix changes the dimOther variable and prod() function return type from int to size_t to prevent signed integer overflow during dimension calculations. Apply the patch by updating to commit 8a8e66e33d692bad1376fe7904d87d767730537f or later.

For additional details, refer to the VulnCheck Advisory on KissFFT.

Workarounds

  • Validate all FFT dimension inputs to ensure products do not approach INT_MAX
  • Implement bounds checking on dimension parameters before calling KissFFT functions
  • Use memory-safe wrappers around KissFFT allocation functions
  • Deploy exploit mitigation technologies such as ASLR and heap canaries
bash
# Example input validation for FFT dimensions
# Reject dimension products that could cause overflow
MAX_SAFE_PRODUCT=$((2147483647 / 4))  # Account for sizeof(kiss_fft_scalar)
# Validate that dim1 * dim2 * (dimReal + 2) < MAX_SAFE_PRODUCT before calling kiss_fftndr_alloc

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechKissfft

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:H/VI:H/VA:H/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
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-122
  • Technical References
  • GitHub Commit Update

  • VulnCheck Advisory on KissFFT
  • Related CVEs
  • CVE-2025-34297: KissFFT 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