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

CVE-2019-25614: Freefloat FTP Buffer Overflow Vulnerability

CVE-2019-25614 is a buffer overflow flaw in Freefloat FTP Server 1.0 that enables remote code execution via the STOR command. This article covers the technical details, affected versions, security impact, and mitigation.

Published: March 27, 2026

CVE-2019-25614 Overview

Free Float FTP Server 1.0 contains a critical buffer overflow vulnerability in the STOR command handler that allows remote attackers to execute arbitrary code. By sending a crafted STOR request with an oversized payload, attackers can overwrite memory and gain control of program execution. The vulnerability is particularly dangerous because it can be exploited with anonymous credentials, requiring no prior authentication to the FTP server.

Critical Impact

Remote attackers can achieve arbitrary code execution on vulnerable FTP servers by sending a malicious STOR command containing 247 bytes of padding followed by a return address and shellcode.

Affected Products

  • Free Float FTP Server 1.0
  • freefloat:freefloat_ftp_server version 1.0

Discovery Timeline

  • 2026-03-22 - CVE CVE-2019-25614 published to NVD
  • 2026-03-23 - Last updated in NVD database

Technical Details for CVE-2019-25614

Vulnerability Analysis

This buffer overflow vulnerability (CWE-787: Out-of-bounds Write) exists in the STOR command handler of Free Float FTP Server. The server fails to properly validate the length of user-supplied input when processing STOR commands, allowing attackers to overflow a fixed-size buffer on the stack. When exploited, the attacker can overwrite the return address on the stack and redirect execution flow to attacker-controlled shellcode.

The vulnerability is classified as network-exploitable with low attack complexity, meaning remote attackers can reach the vulnerable component over the network without requiring any user interaction or special privileges. The anonymous authentication support in the FTP server significantly lowers the barrier to exploitation.

Root Cause

The root cause is improper input validation in the STOR command processing routine. The server allocates a fixed-size buffer for handling incoming STOR requests but fails to enforce boundary checks when copying user-supplied data into this buffer. This classic stack-based buffer overflow pattern allows an attacker to write beyond the allocated buffer boundaries, corrupting adjacent stack memory including saved return addresses.

Attack Vector

The attack is executed remotely over the network via the FTP protocol. An attacker connects to the vulnerable FTP server, authenticates using anonymous credentials (typically anonymous with any password), and then sends a specially crafted STOR command. The malicious payload consists of:

  1. Padding: 247 bytes of filler data to reach the buffer boundary
  2. Return Address: A carefully chosen memory address that redirects execution
  3. Shellcode: Executable code that performs the attacker's desired actions (e.g., spawning a reverse shell)

The vulnerability can be exploited using standard FTP client tools or custom scripts. Additional technical details and proof-of-concept information can be found in Exploit-DB #46763 and the VulnCheck Advisory on FreeFloat FTP.

Detection Methods for CVE-2019-25614

Indicators of Compromise

  • FTP server crashes or unexpected service restarts indicating potential exploitation attempts
  • Unusually large STOR command requests in FTP server logs (particularly those exceeding 247 bytes)
  • Anonymous FTP login attempts followed by immediate STOR commands with no file upload completion
  • Suspicious outbound network connections from the FTP server process (indicating potential reverse shell connections)

Detection Strategies

  • Deploy network intrusion detection rules to identify malformed or oversized STOR commands targeting FTP services
  • Monitor FTP server logs for authentication attempts using anonymous credentials followed by abnormal command patterns
  • Implement endpoint detection and response (EDR) solutions to detect shellcode execution or suspicious child processes spawned by the FTP server

Monitoring Recommendations

  • Enable detailed FTP server logging and centralize logs for analysis
  • Configure alerts for FTP service crashes or unexpected process terminations
  • Monitor network traffic for patterns consistent with buffer overflow exploitation payloads
  • Use SentinelOne's behavioral AI to detect post-exploitation activities such as reverse shell connections or lateral movement

How to Mitigate CVE-2019-25614

Immediate Actions Required

  • Discontinue use of Free Float FTP Server 1.0 and migrate to a maintained, secure FTP server solution
  • Block external access to the FTP service at the network perimeter if the service must remain operational
  • Disable anonymous FTP authentication to reduce the attack surface
  • Deploy network segmentation to isolate FTP servers from critical infrastructure

Patch Information

No official patch is available from the vendor for this vulnerability. The Free Float FTP Server software appears to be unmaintained. Organizations are strongly advised to migrate to an actively supported FTP server solution that receives regular security updates. For reference, the original software is available at FreeFloat FTP Server Download, though its use is not recommended.

Workarounds

  • Replace Free Float FTP Server with a secure, actively maintained alternative such as FileZilla Server, vsftpd, or ProFTPD
  • Implement network-level access controls to restrict FTP access to trusted IP addresses only
  • Deploy a web application firewall (WAF) or intrusion prevention system (IPS) with rules to block oversized FTP commands
  • If migration is not immediately possible, run the FTP server in a sandboxed environment with limited system privileges

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechFreefloat Ftp Server

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.42%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/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
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-787
  • Technical References
  • FreeFloat FTP Server Download

  • Exploit-DB #46763

  • VulnCheck Advisory on FreeFloat FTP
  • Related CVEs
  • CVE-2025-4846: FreeFloat FTP Server Buffer Overflow Flaw

  • CVE-2025-5667: FreeFloat FTP Server Buffer Overflow Flaw

  • CVE-2025-5666: FreeFloat FTP Server Buffer Overflow Flaw

  • CVE-2025-5665: FreeFloat FTP Server Buffer Overflow Flaw
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