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
    • 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-2019-25686

CVE-2019-25686: Core FTP PBSZ Command DoS Vulnerability

CVE-2019-25686 is a denial of service vulnerability in Core FTP 2.0 build 653 affecting the PBSZ command. Attackers can crash the server by sending oversized buffers. This article covers technical details, impact, and mitigation.

Published: April 10, 2026

CVE-2019-25686 Overview

CVE-2019-25686 is a denial of service vulnerability affecting Core FTP 2.0 build 653. The vulnerability exists in the PBSZ command handler, which fails to properly validate input length before processing. This allows unauthenticated attackers to crash the FTP server service by sending a malformed PBSZ command with an oversized buffer exceeding 211 bytes. When exploited, the vulnerability triggers an access violation that terminates the FTP server process, rendering the service unavailable.

Critical Impact

Unauthenticated remote attackers can crash the Core FTP Server service with a single malformed PBSZ command, causing complete denial of service for all connected users and pending file transfers.

Affected Products

  • Core FTP 2.0 build 653
  • CoreFTP Server (versions prior to security patch)

Discovery Timeline

  • 2026-04-05 - CVE-2019-25686 published to NVD
  • 2026-04-09 - Last updated in NVD database

Technical Details for CVE-2019-25686

Vulnerability Analysis

The vulnerability stems from insufficient input validation in the PBSZ (Protection Buffer Size) command handler within Core FTP Server. The PBSZ command is part of the FTP Security Extensions (RFC 2228) and is used during FTP-SSL/TLS session negotiation to specify the maximum buffer size for protected data. In the affected version, the server fails to enforce proper boundary checks on the incoming PBSZ command parameter.

When a client sends a PBSZ command with a payload exceeding 211 bytes, the server attempts to process the oversized input without adequate bounds checking. This results in memory corruption that triggers an access violation exception, causing the FTP server process to crash immediately. The attack requires no authentication, as the PBSZ command can be issued before login credentials are provided.

Root Cause

The root cause is classified as CWE-306 (Missing Authentication for Critical Function), combined with improper input validation. The PBSZ command handler does not properly validate the length of the input buffer before processing, and the command is accessible without authentication. This design flaw allows any network-accessible attacker to send crafted commands that exceed the expected buffer size, leading to memory access violations.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can connect to the Core FTP Server on its listening port (typically TCP port 21) and immediately send a malicious PBSZ command without providing any credentials. The attack sequence involves:

  1. Establishing a TCP connection to the FTP server
  2. Sending a PBSZ command with a payload larger than 211 bytes
  3. The server crashes due to access violation when processing the oversized buffer

The attack is trivial to execute and can be repeated to maintain denial of service conditions. Each successful attack terminates the FTP server process, requiring manual restart or automated recovery mechanisms.

Detection Methods for CVE-2019-25686

Indicators of Compromise

  • FTP server process unexpectedly terminating with access violation errors
  • Multiple connection attempts followed by immediate disconnection without successful authentication
  • Abnormally large PBSZ command parameters in FTP logs (exceeding 211 bytes)
  • Repeated service restarts for the Core FTP Server process

Detection Strategies

  • Monitor FTP server logs for PBSZ commands with unusually large parameter values
  • Implement network intrusion detection rules to identify oversized PBSZ command payloads
  • Configure crash dump analysis to capture and analyze access violation events
  • Deploy application-level firewall rules to validate FTP command parameter lengths

Monitoring Recommendations

  • Enable verbose logging on Core FTP Server to capture all FTP commands
  • Set up alerting for FTP service crashes or unexpected restarts
  • Monitor network traffic for anomalous FTP command sequences from unauthenticated sources
  • Implement availability monitoring to detect service outages quickly

How to Mitigate CVE-2019-25686

Immediate Actions Required

  • Upgrade Core FTP Server to the latest available version that addresses this vulnerability
  • Restrict network access to the FTP server using firewall rules to trusted IP ranges only
  • Consider implementing a reverse proxy or load balancer with input validation capabilities
  • Enable automatic service restart to minimize downtime from potential attacks

Patch Information

Organizations should upgrade Core FTP Server beyond build 653 to address this vulnerability. Refer to the CoreFTP Official Website for the latest available versions and security updates. Additional technical details are available in the VulnCheck Core FTP Advisory and Exploit-DB #46532.

Workarounds

  • Implement network segmentation to limit exposure of the FTP server to trusted networks only
  • Deploy a Web Application Firewall (WAF) or network-based intrusion prevention system to filter malformed FTP commands
  • Configure firewall rules to rate-limit incoming FTP connections from single source IPs
  • Consider disabling SSL/TLS FTP extensions if not required, as the PBSZ command is only relevant for secure FTP connections

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechCoreftp

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/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
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-306
  • Technical References
  • CoreFTP Server Installer

  • CoreFTP Official Website

  • Exploit-DB #46532

  • VulnCheck Core FTP Advisory
  • Related CVEs
  • CVE-2022-22836: CoreFTP Server Path Traversal 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