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-2020-37067

CVE-2020-37067: Filetto FTP Server DoS Vulnerability

CVE-2020-37067 is a denial of service flaw in Filetto 1.0 FTP server affecting FEAT command processing. Attackers can crash the service with oversized commands. This post covers technical details, impact, and mitigation.

Published: February 6, 2026

CVE-2020-37067 Overview

CVE-2020-37067 is a denial of service vulnerability affecting the Filetto 1.0 FTP server. The vulnerability exists in the FEAT command processing functionality, where sending an oversized FEAT command containing 11,008 bytes of repeated characters triggers a buffer overflow condition. This causes the FTP service to crash, resulting in service unavailability for legitimate users.

Critical Impact

Attackers can remotely crash the Filetto FTP server with a single malformed FEAT command, causing complete service disruption without requiring authentication credentials beyond basic FTP access.

Affected Products

  • Filetto 1.0 FTP Server

Discovery Timeline

  • 2026-02-03 - CVE CVE-2020-37067 published to NVD
  • 2026-02-04 - Last updated in NVD database

Technical Details for CVE-2020-37067

Vulnerability Analysis

The Filetto 1.0 FTP server fails to properly validate the length of input received via the FEAT command before processing it. The FEAT command, which is part of the FTP protocol and used to request a list of extended features supported by the server, does not implement adequate boundary checking. When an attacker sends a FEAT command with an unusually large payload of approximately 11,008 bytes, the server attempts to process this oversized input, leading to a buffer overflow condition that terminates the FTP service.

This vulnerability is classified under CWE-770 (Allocation of Resources Without Limits or Throttling), indicating the root cause is improper resource allocation when handling the malformed command. The network-accessible nature of FTP services makes this vulnerability particularly concerning, as attackers can trigger the denial of service condition remotely with minimal prerequisites.

Root Cause

The vulnerability stems from insufficient input validation and improper memory allocation handling in the FEAT command parser. The Filetto FTP server does not enforce length restrictions on incoming FEAT commands, allowing attackers to send payloads far exceeding expected parameters. When the server receives approximately 11,008 bytes of data in a single FEAT command, the buffer allocated for command processing is overwhelmed, causing memory corruption and subsequent service termination.

Attack Vector

The attack is network-based and can be executed by any authenticated FTP user. An attacker establishes a connection to the vulnerable Filetto FTP server, authenticates with valid credentials (which may be default or easily obtainable in many FTP deployments), and then sends a malformed FEAT command containing thousands of repeated characters. The server's failure to sanitize this input results in immediate service crash.

The attack requires low complexity to execute and does not require any user interaction beyond the attacker's own actions. While the attack does not compromise confidentiality or integrity, it completely disrupts service availability. A public exploit for this vulnerability is documented on Exploit-DB #48503.

Detection Methods for CVE-2020-37067

Indicators of Compromise

  • Abnormally large FTP command packets (>10KB) targeting the FEAT command
  • FTP service crashes or unexpected restarts without administrative action
  • Network traffic containing repetitive character patterns in FTP command streams
  • Log entries showing malformed or oversized FEAT command attempts

Detection Strategies

  • Deploy network intrusion detection rules to alert on FTP FEAT commands exceeding normal size thresholds (typically under 1KB)
  • Monitor FTP server process stability and configure alerts for unexpected service terminations
  • Implement deep packet inspection for FTP traffic to identify oversized command payloads
  • Review FTP server logs for repeated connection attempts followed by immediate service failures

Monitoring Recommendations

  • Enable verbose logging on FTP servers to capture command-level detail
  • Configure process monitoring to alert when the Filetto FTP service unexpectedly terminates
  • Establish baseline metrics for FTP command sizes and alert on anomalies
  • Deploy network flow analysis to detect unusual traffic patterns targeting FTP services

How to Mitigate CVE-2020-37067

Immediate Actions Required

  • Consider replacing Filetto 1.0 with an actively maintained FTP server solution
  • Restrict network access to the FTP server using firewall rules to limit exposure
  • Implement network-level rate limiting to slow potential denial of service attempts
  • Deploy a Web Application Firewall (WAF) or network security appliance capable of inspecting FTP traffic

Patch Information

No official patch information is available from the vendor. The SourceForge Project Page and Utillyty Homepage may contain updated versions or announcements. Organizations should consult the VulnCheck Denial of Service Advisory for the latest remediation guidance.

Workarounds

  • Migrate to an alternative FTP server solution with active security support
  • Place the FTP server behind a reverse proxy or load balancer that can filter oversized commands
  • Implement strict IP whitelisting to limit access to trusted users only
  • Use network segmentation to isolate the FTP server from critical infrastructure
bash
# Example firewall rule to limit FTP access to trusted networks
iptables -A INPUT -p tcp --dport 21 -s 192.168.1.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 21 -j DROP

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechFiletto

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/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-770
  • Technical References
  • Utillyty Homepage

  • SourceForge Project Page

  • Exploit-DB #48503

  • VulnCheck Denial of Service Advisory
  • Latest CVEs
  • CVE-2026-35467: Browser API Key Information Disclosure

  • CVE-2026-35466: cveInterface.js XSS Vulnerability

  • CVE-2026-30252: ZenShare Suite XSS Vulnerability

  • CVE-2026-30251: ZenShare Suite v17.0 XSS 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