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
    • 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-14242

CVE-2025-14242: vsftpd Denial of Service Vulnerability

CVE-2025-14242 is a denial of service vulnerability in vsftpd caused by an integer overflow in ls command parsing. Authenticated attackers can exploit this via crafted STAT commands to trigger DoS conditions.

Published: January 23, 2026

CVE-2025-14242 Overview

A vulnerability has been identified in vsftpd, the popular FTP server daemon. This flaw allows authenticated remote attackers to cause a denial of service (DoS) condition by exploiting an integer overflow in the ls command parameter parsing. The vulnerability is triggered when an attacker sends a specially crafted STAT command containing a specific byte sequence, causing the server to become unresponsive or crash.

Critical Impact

Authenticated attackers can remotely crash vsftpd servers, disrupting FTP services and potentially affecting business operations that rely on file transfer functionality.

Affected Products

  • vsftpd (Very Secure FTP Daemon)
  • Red Hat Enterprise Linux systems running vsftpd
  • Linux distributions with affected vsftpd packages

Discovery Timeline

  • January 14, 2026 - CVE-2025-14242 published to NVD
  • January 14, 2026 - Last updated in NVD database

Technical Details for CVE-2025-14242

Vulnerability Analysis

This vulnerability is classified as CWE-190 (Integer Overflow or Wraparound). The flaw exists in the parameter parsing logic for the ls command within vsftpd. When processing directory listing requests via the STAT command, the server fails to properly validate integer boundaries, allowing an attacker to trigger an overflow condition.

The attack requires network access and valid authentication credentials to the FTP server. Once authenticated, an attacker can send a maliciously crafted STAT command with a specific byte sequence designed to overflow integer variables used in parameter parsing. This leads to unexpected behavior that results in service unavailability.

Root Cause

The root cause is insufficient bounds checking on integer values during the parsing of ls command parameters. When the vsftpd daemon processes certain input values, the integer arithmetic operations can overflow, wrapping around to unexpected values. This integer overflow corrupts the internal state of the application, leading to a denial of service condition.

Attack Vector

The attack is conducted over the network against an FTP server running a vulnerable version of vsftpd. The attacker must first authenticate to the server with valid credentials (low privilege required). Once authenticated, the attacker sends a specially crafted STAT command containing a byte sequence designed to trigger the integer overflow in the ls parameter parsing routine.

The vulnerability mechanism involves:

  1. An authenticated user establishes an FTP session with the vsftpd server
  2. The attacker sends a STAT command with specially crafted parameters
  3. The server's ls command parameter parser attempts to process the input
  4. Integer overflow occurs during arithmetic operations on the malicious input
  5. The corrupted internal state causes the server process to crash or become unresponsive

For technical details regarding the specific byte sequence and exploitation mechanics, refer to the Red Hat Bugzilla Report #2419826.

Detection Methods for CVE-2025-14242

Indicators of Compromise

  • Unexpected vsftpd service crashes or restarts in system logs
  • Repeated STAT commands with abnormally long or unusual parameters in FTP access logs
  • High volume of authentication attempts followed by specific command patterns from single sources
  • Service unavailability reports coinciding with suspicious FTP activity

Detection Strategies

  • Monitor FTP server logs for unusual STAT command patterns or malformed requests
  • Implement intrusion detection rules to identify potential integer overflow exploitation attempts in FTP traffic
  • Deploy SentinelOne Singularity XDR to detect anomalous process behavior and service crashes
  • Configure alerting for repeated vsftpd service failures or unexpected daemon restarts

Monitoring Recommendations

  • Enable verbose logging on vsftpd servers to capture detailed command history
  • Implement network traffic analysis to identify suspicious FTP command sequences
  • Configure centralized log collection for FTP servers to correlate potential attack patterns
  • Set up availability monitoring with automatic alerts for vsftpd service interruptions

How to Mitigate CVE-2025-14242

Immediate Actions Required

  • Apply the latest security patches from Red Hat or your Linux distribution vendor immediately
  • Review FTP server access logs for signs of exploitation attempts
  • Consider temporarily restricting FTP access to trusted IP addresses if patching is not immediately possible
  • Audit user accounts with FTP access and disable any unnecessary accounts

Patch Information

Red Hat has released security advisories addressing this vulnerability. Organizations should apply the appropriate patches based on their Red Hat Enterprise Linux version:

  • Red Hat Security Advisory RHSA-2026:0605
  • Red Hat Security Advisory RHSA-2026:0606
  • Red Hat Security Advisory RHSA-2026:0608

For detailed CVE analysis and affected package versions, refer to the Red Hat CVE Analysis for CVE-2025-14242.

Workarounds

  • Implement network-level access controls to restrict FTP access to trusted IP ranges only
  • Use firewall rules to limit connections to the FTP service from known, authorized sources
  • Consider migrating to more secure file transfer protocols such as SFTP or SCP where possible
  • Enable connection rate limiting to reduce the impact of potential exploitation attempts
bash
# Example: Restrict FTP access using iptables
iptables -A INPUT -p tcp --dport 21 -s 192.168.1.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 21 -j DROP

# Example: Configure vsftpd to limit connections
# Add to /etc/vsftpd/vsftpd.conf
max_clients=50
max_per_ip=5

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechVsftpd

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.17%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-190
  • Technical References
  • Red Hat Security Advisory RHSA-2026:0605

  • Red Hat Security Advisory RHSA-2026:0606

  • Red Hat Security Advisory RHSA-2026:0608

  • Red Hat CVE Analysis CVE-2025-14242

  • Red Hat Bugzilla Report #2419826
  • Latest CVEs
  • CVE-2025-9185: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9184: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-8030: Mozilla Firefox RCE 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