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

CVE-2020-37079: Wing FTP Server CSRF Vulnerability

CVE-2020-37079 is a cross-site request forgery flaw in Wing FTP Server's web admin interface that enables attackers to delete admin users. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 13, 2026

CVE-2020-37079 Overview

CVE-2020-37079 is a Cross-Site Request Forgery (CSRF) vulnerability affecting Wing FTP Server versions prior to 6.2.7. The vulnerability exists in the web administration interface and allows attackers to delete admin users by crafting a malicious HTML page with a hidden form that submits unauthorized requests to the server.

Critical Impact

Attackers can delete administrative user accounts without proper authorization, potentially locking legitimate administrators out of the system and enabling further compromise of the FTP server infrastructure.

Affected Products

  • Wing FTP Server versions prior to 6.2.7

Discovery Timeline

  • 2026-02-07 - CVE CVE-2020-37079 published to NVD
  • 2026-02-09 - Last updated in NVD database

Technical Details for CVE-2020-37079

Vulnerability Analysis

This Cross-Site Request Forgery (CSRF) vulnerability (CWE-352) affects the web administration interface of Wing FTP Server. The core issue stems from the lack of proper CSRF token validation when processing administrative actions. When an authenticated administrator visits a malicious webpage while logged into the Wing FTP Server admin interface, the attacker-controlled page can silently submit requests that perform administrative operations, specifically deleting admin user accounts.

The attack requires user interaction—the victim administrator must be logged into the Wing FTP Server web interface and navigate to a malicious page crafted by the attacker. Once these conditions are met, the hidden form on the attacker's page automatically submits a request to the admin panel, which the server processes as a legitimate request from the authenticated session.

Root Cause

The root cause of this vulnerability is the absence of anti-CSRF protections in the Wing FTP Server web administration interface. The server fails to implement proper request validation mechanisms such as CSRF tokens, origin header verification, or same-site cookie attributes. This allows cross-origin requests from attacker-controlled pages to be processed as if they were legitimate actions from the authenticated administrator.

Attack Vector

The attack vector is network-based and requires the following conditions:

  1. The target administrator must be authenticated to the Wing FTP Server web admin interface
  2. The administrator must visit an attacker-controlled webpage (via phishing, malicious ad, or compromised website)
  3. The malicious page contains a hidden HTML form that auto-submits to the Wing FTP Server admin endpoint
  4. The request targets the user deletion functionality, removing administrative accounts

The attack leverages the browser's automatic inclusion of session cookies with cross-origin requests, allowing the attacker's malicious form submission to inherit the administrator's authenticated session.

For detailed technical information and proof-of-concept examples, refer to the Exploit-DB #48200 and the VulnCheck Advisory.

Detection Methods for CVE-2020-37079

Indicators of Compromise

  • Unexpected deletion of administrative user accounts in Wing FTP Server
  • Audit logs showing admin account deletions without corresponding legitimate admin activity
  • Reports from administrators of being locked out after visiting external websites
  • HTTP request logs showing DELETE or POST requests to admin user management endpoints with unusual referer headers

Detection Strategies

  • Monitor Wing FTP Server logs for administrative account modifications, especially deletions
  • Review web server access logs for requests to admin endpoints with external or unexpected referer headers
  • Implement alerting on any administrative user account deletions
  • Correlate admin activity timestamps with browsing history to identify suspicious sequences

Monitoring Recommendations

  • Enable detailed audit logging for all administrative actions in Wing FTP Server
  • Configure log forwarding to a centralized SIEM for real-time correlation and alerting
  • Set up alerts for administrative account changes, particularly deletions
  • Monitor for unusual HTTP traffic patterns to the web administration interface

How to Mitigate CVE-2020-37079

Immediate Actions Required

  • Upgrade Wing FTP Server to version 6.2.7 or later immediately
  • Restrict access to the web administration interface to trusted IP addresses only
  • Implement network-level controls to limit admin interface exposure
  • Advise administrators to use dedicated browsers for server administration and avoid browsing untrusted sites

Patch Information

Wing FTP Server version 6.2.7 addresses this CSRF vulnerability by implementing proper request validation. Organizations should upgrade to this version or later to remediate the vulnerability. For version history and download information, visit the WFTP Server History page.

Workarounds

  • Restrict web administration interface access to specific trusted IP addresses using firewall rules
  • Configure administrators to use a separate browser profile or session dedicated solely to Wing FTP Server administration
  • Implement network segmentation to isolate the admin interface from general network traffic
  • Consider disabling the web administration interface entirely and use alternative management methods if available
bash
# Example: Restrict admin interface access via iptables (Linux proxy/firewall)
# Only allow access from trusted admin workstation IP
iptables -A INPUT -p tcp --dport 5466 -s 192.168.1.100 -j ACCEPT
iptables -A INPUT -p tcp --dport 5466 -j DROP

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechWing Ftp Server

  • SeverityMEDIUM

  • CVSS Score5.1

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:N/VI:L/VA:N/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
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-352
  • Technical References
  • Exploit-DB #48200

  • VulnCheck Advisory

  • WFTP Server Homepage

  • WFTP Server History
  • Related CVEs
  • CVE-2019-25267: Wing FTP Server Privilege Escalation Flaw

  • CVE-2020-37032: Wing FTP Server 6.3.8 RCE Vulnerability

  • CVE-2022-50934: Wing FTP Server RCE Vulnerability

  • CVE-2025-47812: Wing FTP Server 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