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-2016-20046

CVE-2016-20046: zFTP Client Buffer Overflow Vulnerability

CVE-2016-20046 is a buffer overflow vulnerability in zFTP Client that allows local attackers to crash the application or execute arbitrary code. This post covers technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2016-20046 Overview

CVE-2016-20046 is a buffer overflow vulnerability affecting zFTP Client version 20061220+dfsg3-4.1. The vulnerability exists in the NAME parameter handling of FTP connections, where an oversized value can overflow an 80-byte buffer allocated during strcpy_chk operations. This memory corruption flaw allows local attackers to crash the application or potentially execute arbitrary code with user privileges by overwriting the instruction pointer and injecting shellcode.

Critical Impact

Local attackers can exploit this buffer overflow to achieve arbitrary code execution or cause denial of service by supplying crafted NAME parameter values that exceed the 80-byte buffer boundary.

Affected Products

  • zFTP Client 20061220+dfsg3-4.1
  • Earlier versions of zFTP Client may also be affected

Discovery Timeline

  • 2026-03-28 - CVE-2016-20046 published to NVD
  • 2026-03-30 - Last updated in NVD database

Technical Details for CVE-2016-20046

Vulnerability Analysis

This vulnerability is classified as CWE-787 (Out-of-Bounds Write), a memory corruption issue that occurs when the application writes data past the end of the intended buffer. In the context of zFTP Client, the NAME parameter handling routine allocates a fixed 80-byte buffer but fails to properly validate the length of user-supplied input before copying it using strcpy_chk. When an attacker provides a NAME value exceeding this boundary, the excess data overwrites adjacent memory regions, potentially corrupting critical control structures including the saved return address on the stack.

The local attack vector means an attacker must have local access to the system running the vulnerable zFTP Client. However, successful exploitation can result in complete compromise of confidentiality, integrity, and availability within the user's context.

Root Cause

The root cause is improper bounds checking in the NAME parameter handling code. The application uses strcpy_chk to copy user-supplied NAME values into a statically-sized 80-byte buffer without first validating that the input length does not exceed the destination buffer capacity. This classic buffer overflow pattern allows attackers to write arbitrary data beyond the allocated memory region.

Attack Vector

Exploitation requires local access to the target system. An attacker can craft a malicious NAME parameter value exceeding 80 bytes to trigger the buffer overflow. By carefully constructing the overflow payload, the attacker can:

  1. Overwrite the saved instruction pointer on the stack
  2. Redirect execution flow to attacker-controlled shellcode
  3. Execute arbitrary code with the privileges of the user running zFTP Client

The vulnerability can also be exploited for denial of service by simply crashing the application through memory corruption. Technical details and proof-of-concept information are available through the Exploit-DB #40203 advisory.

Detection Methods for CVE-2016-20046

Indicators of Compromise

  • Unexpected crashes of the zFTP Client application, particularly during FTP connection establishment
  • Core dumps or crash logs showing memory corruption in NAME parameter handling routines
  • Anomalous process behavior following FTP client execution
  • Evidence of shellcode execution or unauthorized processes spawned from zFTP Client

Detection Strategies

  • Monitor for abnormal termination of zFTP Client processes with segmentation fault signals
  • Implement application-level monitoring to detect oversized NAME parameter values in FTP sessions
  • Deploy endpoint detection solutions capable of identifying buffer overflow exploitation attempts
  • Use memory protection mechanisms such as ASLR and stack canaries to detect exploitation attempts

Monitoring Recommendations

  • Enable crash reporting and core dump collection for zFTP Client instances
  • Configure host-based intrusion detection systems to monitor for suspicious activity associated with FTP client processes
  • Review system logs for evidence of application crashes or unexpected process terminations
  • Implement file integrity monitoring on systems where zFTP Client is installed

How to Mitigate CVE-2016-20046

Immediate Actions Required

  • Discontinue use of zFTP Client version 20061220+dfsg3-4.1 if possible
  • Consider migrating to a more actively maintained FTP client solution
  • Restrict local access to systems running the vulnerable software
  • Enable operating system memory protection features (ASLR, DEP/NX, stack canaries)

Patch Information

No official vendor patch information is available in the CVE data. The zFTP Client appears to be legacy software associated with the CERN library project. Users should consult the CERN Library Resource for any available updates or consider alternative FTP client software. Additional advisory information is available from Vulncheck Advisory for ZFTP.

Workarounds

  • Replace zFTP Client with a modern, actively maintained FTP client that has proper input validation
  • Implement strict access controls to limit which users can execute the vulnerable application
  • Run the application in a sandboxed or containerized environment to limit the impact of exploitation
  • Use operating system security features to restrict the application's capabilities and resource access

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechZftp Client

  • SeverityHIGH

  • CVSS Score8.6

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/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
  • CERN Library Resource

  • Exploit-DB #40203

  • Vulncheck Advisory for ZFTP
  • 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