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
    • Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-36983

CVE-2020-36983: Quick 'n Easy FTP Privilege Escalation

CVE-2020-36983 is an unquoted service path privilege escalation vulnerability in Quick 'n Easy FTP Service 3.2 that enables local attackers to execute code with LocalSystem privileges during service startup or reboot.

Published: January 30, 2026

CVE-2020-36983 Overview

CVE-2020-36983 is an unquoted service path vulnerability affecting Quick 'n Easy FTP Service 3.2, a Windows FTP server application developed by Pablo Software Solutions. This local privilege escalation vulnerability allows attackers with local system access to execute arbitrary code with elevated LocalSystem privileges by exploiting an improperly quoted service binary path during service startup or system boot.

When Windows services are registered with paths containing spaces and lacking proper quotation marks, the operating system attempts to parse the path by searching for executables at each potential break point in the path. This allows attackers to plant malicious executables in predictable locations that will be executed with the service's configured privileges.

Critical Impact

Local attackers can achieve LocalSystem privilege escalation by placing malicious executables in the service path, enabling complete system compromise during service restart or system boot.

Affected Products

  • Quick 'n Easy FTP Service 3.2
  • Earlier versions of Quick 'n Easy FTP Service may also be affected

Discovery Timeline

  • 2026-01-27 - CVE CVE-2020-36983 published to NVD
  • 2026-01-29 - Last updated in NVD database

Technical Details for CVE-2020-36983

Vulnerability Analysis

The vulnerability exists due to improper configuration of the Windows service registration for Quick 'n Easy FTP Service. When the service is installed, the binary path is stored in the Windows registry without enclosing quotation marks. This configuration issue maps to CWE-428 (Unquoted Search Path or Element).

The root cause lies in how Windows handles service paths containing spaces. When a service path like C:\Program Files\Quick n Easy FTP Service\service.exe is registered without quotes, Windows interprets it as multiple potential executable locations. The system first searches for C:\Program.exe, then C:\Program Files\Quick.exe, and continues parsing until it finds a valid executable or reaches the intended path.

This vulnerability requires local access to the system and the ability to write files to locations within the service path hierarchy. Successful exploitation results in arbitrary code execution with LocalSystem privileges, the highest privilege level on Windows systems.

Root Cause

The vulnerability stems from the service installer failing to properly quote the ImagePath registry value when registering the Windows service. The service configuration stores an unquoted path in the HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ registry key, creating a parsing ambiguity that Windows exploits sequentially.

Attack Vector

Exploitation requires local access with write permissions to a directory within the unquoted service path. An attacker can create a malicious executable at one of the intermediate path locations that Windows will attempt to execute. When the service starts (either manually, at boot time, or after a system crash), Windows will execute the attacker's malicious payload with LocalSystem privileges instead of or before the legitimate service binary.

The attack surface is limited to local users who can write to directories like C:\Program Files\ or create directories at the root of the system drive. However, in environments with misconfigured permissions or where multiple users share systems, this vulnerability presents a reliable privilege escalation vector.

Detection Methods for CVE-2020-36983

Indicators of Compromise

  • Unexpected executable files in root directories or C:\Program Files\ with names matching path components (e.g., Program.exe, Quick.exe)
  • Service failures or unexpected process execution during system startup
  • New or suspicious files created in directories along the service installation path
  • Unusual processes running with LocalSystem privileges at boot time

Detection Strategies

  • Query Windows services for unquoted paths using PowerShell: Get-WmiObject Win32_Service | Where-Object { $_.PathName -notlike '"*' -and $_.PathName -like '* *' }
  • Monitor file creation events in C:\ and C:\Program Files\ directories for suspicious executables
  • Review Windows Event Logs for service control manager events indicating service execution failures or unexpected binary paths
  • Implement file integrity monitoring on directories commonly targeted by unquoted service path attacks

Monitoring Recommendations

  • Enable Windows audit policies for object access to track file creation in system directories
  • Configure endpoint detection rules to alert on executable file creation in path segments of known vulnerable services
  • Regularly audit installed services for unquoted path configurations as part of system hardening assessments
  • Monitor for abnormal service behavior including unexpected restarts or failures

How to Mitigate CVE-2020-36983

Immediate Actions Required

  • Audit the Quick 'n Easy FTP Service installation to verify the current path configuration in the Windows registry
  • Manually correct the unquoted service path by adding quotation marks to the ImagePath registry value
  • Review directory permissions to ensure standard users cannot write to directories in the service path hierarchy
  • Consider uninstalling the vulnerable software if it is no longer needed or actively maintained

Patch Information

As of the last NVD update, no official vendor patch has been released for this vulnerability. Administrators should refer to the Pablo Software Solutions website for any future updates. The VulnCheck Advisory provides additional technical details and mitigation guidance. Historical exploit details are documented on Exploit-DB #48983.

Workarounds

  • Manually fix the service path by adding quotation marks to the registry entry: Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\[ServiceName] and modify the ImagePath value to include quotes around the full path
  • Restrict write permissions on directories that fall within the unquoted path segments to prevent malicious file placement
  • Implement application whitelisting to prevent execution of unauthorized executables in system directories
  • Consider migrating to an alternative FTP server solution that is actively maintained and patched
bash
# Registry fix example (run as Administrator in Command Prompt)
reg add "HKLM\SYSTEM\CurrentControlSet\Services\QuickNEasyFTP" /v ImagePath /t REG_EXPAND_SZ /d "\"C:\Program Files\Quick n Easy FTP Service\service.exe\"" /f

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechQuick N Easy Ftp Service

  • SeverityHIGH

  • CVSS Score8.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:L/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-428
  • Technical References
  • Exploit-DB #48983

  • Pablo Software Solutions Download

  • Pablo Software Solutions FTP Service

  • VulnCheck Advisory on FTP Service
  • Latest CVEs
  • CVE-2025-9185: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9184: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-8030: Mozilla Firefox 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