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

CVE-2019-25654: Core FTP/SFTP Server DoS Vulnerability

CVE-2019-25654 is a buffer overflow denial of service vulnerability in Core FTP/SFTP Server 1.2 that enables attackers to crash the service. This article covers technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2019-25654 Overview

CVE-2019-25654 is a buffer overflow vulnerability affecting Core FTP/SFTP Server version 1.2. The flaw allows remote attackers to crash the FTP/SFTP service by supplying an excessively long string in the User domain field. When attackers paste a malicious payload containing approximately 7000 bytes of data into the domain configuration, it triggers an application crash and results in denial of service.

Critical Impact

Remote attackers can cause a complete denial of service by crashing the Core FTP/SFTP Server through a buffer overflow in the User domain field, disrupting file transfer operations for all users.

Affected Products

  • Core FTP/SFTP Server 1.2

Discovery Timeline

  • 2026-03-30 - CVE-2019-25654 published to NVD
  • 2026-03-30 - Last updated in NVD database

Technical Details for CVE-2019-25654

Vulnerability Analysis

This vulnerability is classified as CWE-787 (Out-of-bounds Write), a memory corruption issue that occurs when the application writes data beyond the boundaries of an allocated buffer. In the case of Core FTP/SFTP Server 1.2, the User domain field does not properly validate the length of input data before copying it into a fixed-size buffer in memory.

When processing configuration data, the server fails to implement adequate boundary checks on the domain field. This allows an attacker to submit a string significantly larger than the allocated buffer space, causing data to be written to adjacent memory regions. The resulting memory corruption leads to an immediate application crash, effectively denying service to legitimate users.

Root Cause

The root cause is insufficient input validation in the User domain field processing routine. The application allocates a fixed-size buffer for domain values but does not enforce length restrictions on user-supplied input. When the server attempts to process a domain string containing 7000 bytes of data, it writes beyond the allocated buffer boundaries, corrupting adjacent memory structures and causing the application to crash.

Attack Vector

The vulnerability is exploitable over the network without authentication. An attacker with access to the server's configuration interface can trigger the buffer overflow by:

  1. Accessing the User domain configuration field in the Core FTP/SFTP Server administrative interface
  2. Submitting an excessively long string (approximately 7000 bytes) as the domain value
  3. The server processes the malformed input without proper bounds checking
  4. Memory corruption occurs as data overwrites adjacent buffer space
  5. The FTP/SFTP service crashes, resulting in denial of service

The attack requires network access to the server but does not require any user interaction or special privileges to execute. Technical details and proof-of-concept information are available through the Exploit-DB #46371 entry.

Detection Methods for CVE-2019-25654

Indicators of Compromise

  • Unexpected Core FTP/SFTP Server service crashes or restarts
  • Abnormally long strings (>1000 characters) appearing in domain configuration fields
  • Event log entries indicating buffer overflow or access violation errors in the FTP server process
  • Service availability interruptions without corresponding legitimate administrative actions

Detection Strategies

  • Monitor for unusually large HTTP POST or configuration requests targeting the FTP server admin interface
  • Configure endpoint detection solutions to alert on application crashes with memory access violation signatures
  • Implement network intrusion detection rules to flag oversized domain field values in FTP server traffic
  • Deploy SentinelOne Singularity platform to detect and respond to buffer overflow exploitation attempts

Monitoring Recommendations

  • Enable detailed application logging for the Core FTP/SFTP Server process
  • Configure automated alerting for service crashes or unexpected process termination
  • Monitor Windows Event Log for application errors related to the Core FTP service
  • Implement availability monitoring to detect service outages that may indicate exploitation

How to Mitigate CVE-2019-25654

Immediate Actions Required

  • Restrict administrative access to the Core FTP/SFTP Server configuration interface to trusted IP addresses only
  • Implement network segmentation to limit exposure of the FTP server management interface
  • Apply any available vendor updates or patches for Core FTP/SFTP Server
  • Consider deploying a web application firewall to filter malicious input to the admin interface

Patch Information

Organizations should check the Core FTP Official Site for updated versions that address this vulnerability. The VulnCheck Advisory on Core FTP provides additional technical details and remediation guidance. An archived version of the server is available at the Core FTP Server Download page for reference.

Workarounds

  • Restrict network access to the Core FTP/SFTP Server administrative interface using firewall rules
  • Place the FTP server behind a reverse proxy with input validation capabilities
  • Implement input length restrictions at the network perimeter to reject oversized requests
  • Configure automatic service restart policies to minimize downtime in case of exploitation
bash
# Example Windows Firewall rule to restrict admin interface access
netsh advfirewall firewall add rule name="Restrict Core FTP Admin" dir=in action=block protocol=tcp localport=ADMIN_PORT remoteip=any
netsh advfirewall firewall add rule name="Allow Core FTP Admin - Trusted" dir=in action=allow protocol=tcp localport=ADMIN_PORT remoteip=TRUSTED_IP_RANGE

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechCore Ftp

  • 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-787
  • Technical References
  • Core FTP Official Site

  • Core FTP Server Download

  • Exploit-DB #46371

  • VulnCheck Advisory on Core FTP
  • Related CVEs
  • CVE-2020-37107: Core FTP LE DoS Vulnerability
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