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-2022-22836

CVE-2022-22836: CoreFTP Server Path Traversal Vulnerability

CVE-2022-22836 is a path traversal vulnerability in CoreFTP Server that allows authenticated attackers to create files in unauthorized directories. This article covers technical details, affected versions, and mitigation.

Published: February 18, 2026

CVE-2022-22836 Overview

CVE-2022-22836 is a directory traversal vulnerability affecting CoreFTP Server versions prior to build 727. This security flaw allows authenticated attackers to create files in arbitrary directories outside the intended upload location by using ../ sequences in HTTP PUT requests. The vulnerability stems from improper input validation of file paths in the HTTP request handler.

Critical Impact

Authenticated attackers can write files to arbitrary locations on the server filesystem, potentially leading to web shell deployment, configuration tampering, or system compromise.

Affected Products

  • CoreFTP Server versions before build 727
  • CoreFTP Server 2.0 builds 639 through 725
  • All CoreFTP Server installations with HTTP/HTTPS file transfer enabled

Discovery Timeline

  • 2022-01-10 - CVE-2022-22836 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-22836

Vulnerability Analysis

This directory traversal vulnerability (CWE-22) affects the HTTP PUT request handler in CoreFTP Server. When processing file upload requests, the server fails to properly sanitize the destination path parameter, allowing attackers to include path traversal sequences such as ../ in the request URI. This enables authenticated users to escape the designated upload directory and write files to arbitrary locations on the server's filesystem.

The vulnerability requires authentication, meaning an attacker must have valid credentials to exploit this flaw. However, once authenticated, even low-privilege users can leverage this vulnerability to write files outside their authorized directories. The attack is conducted over the network and requires no user interaction, making it relatively straightforward to exploit.

Root Cause

The root cause of CVE-2022-22836 lies in insufficient input validation within the HTTP PUT request handler. The CoreFTP Server does not adequately sanitize or canonicalize file paths before processing upload requests. Specifically, the server fails to:

  1. Strip or reject path traversal sequences (../ or ..\)
  2. Validate that the final destination path remains within the configured upload directory
  3. Implement proper path canonicalization before file creation

This allows malicious path components to be processed literally, enabling directory traversal attacks.

Attack Vector

The attack is executed via the network using HTTP PUT requests to the CoreFTP Server's web interface. An authenticated attacker crafts a malicious HTTP PUT request containing directory traversal sequences in the target path. The server processes the request without proper path validation, resulting in file creation at an attacker-controlled location.

Potential exploitation scenarios include:

  • Writing malicious executable files to system directories
  • Deploying web shells in web-accessible directories
  • Overwriting configuration files to modify server behavior
  • Creating scheduled task files for persistence

The vulnerability allows for arbitrary file creation with high integrity impact, though it does not directly provide read access to existing files or cause denial of service.

Detection Methods for CVE-2022-22836

Indicators of Compromise

  • HTTP PUT requests containing ../ or encoded path traversal sequences in the URL path
  • Unexpected file creation events in directories outside the designated FTP upload paths
  • Log entries showing file writes to system directories from the CoreFTP Server process
  • Presence of suspicious files (web shells, scripts) in web root or system directories

Detection Strategies

  • Monitor CoreFTP Server logs for HTTP PUT requests containing path traversal patterns such as ../, ..%2f, or %2e%2e/
  • Implement network-level detection rules to identify HTTP requests with directory traversal sequences targeting CoreFTP Server ports
  • Deploy file integrity monitoring on critical directories to detect unauthorized file creation
  • Review web server access logs for requests to newly created files in unexpected locations

Monitoring Recommendations

  • Enable verbose logging on CoreFTP Server to capture full request URIs for forensic analysis
  • Configure SIEM rules to alert on directory traversal patterns in HTTP traffic destined for CoreFTP Server
  • Implement real-time file system monitoring on the server hosting CoreFTP to detect anomalous file creation events
  • Regularly audit user accounts and permissions to identify potentially compromised credentials

How to Mitigate CVE-2022-22836

Immediate Actions Required

  • Upgrade CoreFTP Server to build 727 or later immediately
  • Review server logs for evidence of exploitation attempts using path traversal patterns
  • Audit the filesystem for unauthorized files created outside designated upload directories
  • Consider temporarily disabling HTTP/HTTPS file transfer functionality until patching is complete

Patch Information

CoreFTP has released build 727 which addresses this directory traversal vulnerability. Organizations should upgrade to build 727 or the latest available version as soon as possible. Detailed patch information and download links are available through the Core FTP Forum Discussion. Additional technical analysis can be found at Your Security Bores Analysis.

Workarounds

  • Disable HTTP/HTTPS file transfer functionality if not required, limiting the server to FTP/SFTP protocols only
  • Implement network segmentation to restrict access to CoreFTP Server from untrusted networks
  • Deploy a web application firewall (WAF) with rules to block requests containing path traversal sequences
  • Review and restrict user account permissions to minimize the potential impact of exploitation
bash
# Verification command to check CoreFTP Server version
# Access the CoreFTP Server admin interface and verify build number is 727 or higher
# Alternatively, check the version information in the server executable properties

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechCoreftp

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability3.13%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • Your Security Bores Analysis
  • Vendor Resources
  • Core FTP Forum Discussion
  • Related CVEs
  • CVE-2019-25686: Core FTP PBSZ Command DoS 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