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-2025-11624

CVE-2025-11624: WolfSSH SFTP Buffer Overflow Vulnerability

CVE-2025-11624 is a buffer overflow flaw in WolfSSH SFTP server triggered by malicious packets with oversized handles. This article covers the technical details, affected versions, security impact, and mitigation.

Published: April 1, 2026

CVE-2025-11624 Overview

CVE-2025-11624 is a stack buffer overwrite vulnerability affecting the wolfSSH SFTP server component. The vulnerability occurs when the server receives a malicious packet containing a handle size that exceeds the system handle or file descriptor size but remains smaller than the maximum allowed handle size. This boundary condition error can lead to memory corruption on the server side.

Critical Impact

Malicious SFTP packets with crafted handle sizes can trigger stack buffer overwrites on wolfSSH servers, potentially affecting system stability and data integrity.

Affected Products

  • wolfSSH (all versions prior to the fix)

Discovery Timeline

  • 2025-10-21 - CVE-2025-11624 published to NVD
  • 2025-12-04 - Last updated in NVD database

Technical Details for CVE-2025-11624

Vulnerability Analysis

This vulnerability is classified as CWE-787 (Out-of-Bounds Write), a memory corruption issue that occurs during SFTP packet processing. The root cause lies in insufficient validation of handle size parameters within incoming SFTP packets. When a malicious packet specifies a handle size that falls between the actual system handle/file descriptor size and the maximum permitted handle size, the server writes data beyond the intended stack buffer boundaries.

The vulnerability requires network access to exploit, as an attacker must be able to send specially crafted SFTP packets to the vulnerable server. However, exploitation requires high privileges and active user interaction, significantly limiting the practical attack surface.

Root Cause

The vulnerability stems from inadequate boundary checking in the SFTP packet handling routines. The server fails to properly validate that the incoming handle size matches the expected system handle or file descriptor size. Instead, it only checks against the maximum allowed handle size, creating a gap where oversized (but not maximum-sized) handles can cause stack buffer overwrites.

Attack Vector

An attacker with network access to a wolfSSH SFTP server can craft malicious SFTP packets containing handle sizes that exceed the system's native handle size but fall below the maximum permitted handle size. When the server processes these packets, it attempts to write handle data into a stack buffer sized for the smaller system handles, resulting in a stack buffer overwrite.

The attack requires:

  • Network connectivity to the SFTP server
  • High-level privileges on the target system
  • Active user interaction

The vulnerability allows potential low-impact compromise of confidentiality, integrity, and availability on the vulnerable system.

Detection Methods for CVE-2025-11624

Indicators of Compromise

  • Unexpected crashes or instability in wolfSSH SFTP server processes
  • Anomalous SFTP packets with unusual handle size values in network traffic logs
  • Memory corruption indicators or stack smashing detected messages in system logs

Detection Strategies

  • Monitor SFTP server processes for unexpected termination or restart patterns
  • Implement network intrusion detection rules to identify SFTP packets with abnormally large handle size fields
  • Enable memory protection mechanisms such as stack canaries and ASLR to detect exploitation attempts

Monitoring Recommendations

  • Review wolfSSH SFTP server logs for any signs of malformed packet handling
  • Implement network traffic analysis focused on SFTP protocol anomalies
  • Configure alerting for wolfSSH process crashes or unexpected behavior

How to Mitigate CVE-2025-11624

Immediate Actions Required

  • Update wolfSSH to the latest version that includes the security fix
  • Review network access controls to limit SFTP server exposure
  • Enable stack protection mechanisms on systems running wolfSSH

Patch Information

The vulnerability has been addressed in GitHub Pull Request #834. Organizations should update to the patched version of wolfSSH that incorporates this fix to remediate the vulnerability.

Workarounds

  • Restrict network access to the SFTP server to trusted IP addresses only
  • Implement firewall rules to limit SFTP connections to authorized clients
  • Monitor SFTP server processes closely for any signs of instability while awaiting patch deployment
  • Consider temporarily disabling SFTP functionality if it is not business-critical

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechWolfssh

  • SeverityLOW

  • CVSS Score1.8

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:H/UI:A/VC:L/VI:L/VA:L/SC:N/SI:N/SA:L/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
  • IntegrityLow
  • AvailabilityLow
  • CWE References
  • CWE-787
  • Technical References
  • GitHub Pull Request
  • Related CVEs
  • CVE-2025-15382: wolfSSH Heap Buffer Overflow Vulnerability

  • CVE-2025-14942: wolfSSH Auth Bypass Vulnerability

  • CVE-2024-2873: WolfSSH Auth Bypass Vulnerability

  • CVE-2025-11625: WolfSSH Auth Bypass 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