Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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
    • AI 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-2026-28295

CVE-2026-28295: FTP GVfs Backend SSRF Vulnerability

CVE-2026-28295 is a server-side request forgery flaw in FTP GVfs backend that allows malicious servers to probe client networks. This article covers the technical details, affected versions, and mitigation steps.

Published: February 27, 2026

CVE-2026-28295 Overview

A Server-Side Request Forgery (SSRF) vulnerability has been discovered in the FTP GVfs backend. A malicious FTP server can exploit this vulnerability by providing an arbitrary IP address and port in its passive mode (PASV) response. The client unconditionally trusts this information and attempts to connect to the specified endpoint, allowing the malicious server to probe for open ports accessible from the client's network.

Critical Impact

This vulnerability enables attackers controlling a malicious FTP server to conduct port scanning and network reconnaissance on internal systems accessible from the victim's network, potentially exposing sensitive internal infrastructure.

Affected Products

  • GVfs FTP backend (affected versions not specified)
  • Linux distributions using GVfs for file system access
  • GNOME desktop environments utilizing GVfs

Discovery Timeline

  • 2026-02-26 - CVE-2026-28295 published to NVD
  • 2026-02-26 - Last updated in NVD database

Technical Details for CVE-2026-28295

Vulnerability Analysis

This vulnerability is classified as CWE-918 (Server-Side Request Forgery). The flaw exists in how the GVfs FTP backend handles passive mode (PASV) responses from FTP servers. In the FTP protocol, when a client initiates a passive mode connection, the server responds with an IP address and port number where the client should connect to transfer data.

The GVfs FTP backend implementation fails to properly validate the IP address and port information returned in the PASV response. Instead of restricting data connections to the same host as the control connection, the client unconditionally trusts and connects to whatever endpoint the server specifies. This design flaw creates an SSRF condition that can be weaponized by malicious FTP servers.

Root Cause

The root cause of this vulnerability is improper validation of server-provided data in the FTP passive mode implementation. The GVfs FTP backend lacks security controls to verify that the data connection destination matches the control connection server, allowing arbitrary redirect of data connections to attacker-specified endpoints.

Attack Vector

The attack vector requires user interaction where the victim connects to a malicious FTP server. The attack flow proceeds as follows:

  1. The victim initiates an FTP connection to an attacker-controlled server
  2. When passive mode is requested, the malicious server responds with a crafted PASV response containing an arbitrary internal IP address and port
  3. The GVfs client blindly trusts this information and attempts to establish a data connection to the specified endpoint
  4. Based on the connection result (success, failure, timing), the attacker can infer network topology and open ports on internal systems

This technique allows attackers to leverage the victim's network position to scan internal infrastructure that would otherwise be inaccessible from the internet. For technical details, see the Red Hat CVE-2026-28295 Advisory and Red Hat Bug Report #2443004.

Detection Methods for CVE-2026-28295

Indicators of Compromise

  • Unusual outbound FTP connections to untrusted or suspicious external servers
  • FTP data connections targeting internal IP addresses that differ from the FTP control connection server
  • Connection attempts to non-standard ports following FTP PASV command exchanges
  • Network traffic patterns indicating port scanning originating from GVfs processes

Detection Strategies

  • Monitor for FTP connections where the data connection destination differs from the control connection server IP
  • Implement network segmentation alerts for FTP clients attempting connections to internal RFC1918 address spaces
  • Deploy endpoint detection to identify gvfsd-ftp processes making connections to internal infrastructure
  • Create IDS/IPS rules to detect anomalous PASV responses containing internal IP addresses

Monitoring Recommendations

  • Log all FTP passive mode connections and analyze destination IP patterns
  • Configure network monitoring to alert on GVfs processes connecting to unexpected internal endpoints
  • Establish baseline FTP connection behavior to identify deviations indicative of exploitation
  • Implement centralized logging for all file transfer activities across the environment

How to Mitigate CVE-2026-28295

Immediate Actions Required

  • Avoid connecting to untrusted or unknown FTP servers until patches are available
  • Consider disabling FTP functionality in GVfs if not required for business operations
  • Implement network-level controls to restrict outbound FTP connections to known trusted servers
  • Apply security patches from your Linux distribution vendor when they become available

Patch Information

Consult the Red Hat CVE-2026-28295 Advisory for official patch information and updates. Track Red Hat Bug Report #2443004 for remediation progress. Apply vendor-provided security updates as soon as they become available.

Workarounds

  • Use alternative secure file transfer methods such as SFTP or SCP instead of FTP
  • Configure firewall rules to block FTP data connections to internal network ranges
  • Implement proxy-based FTP access that can validate PASV responses before forwarding
  • Consider application-level controls to restrict GVfs FTP backend usage
bash
# Example: Block outbound FTP data connections to internal networks
# Add to iptables firewall rules
iptables -A OUTPUT -p tcp --dport 1024:65535 -d 10.0.0.0/8 -m owner --uid-owner $USER -m comment --comment "Block FTP PASV to internal" -j DROP
iptables -A OUTPUT -p tcp --dport 1024:65535 -d 172.16.0.0/12 -m owner --uid-owner $USER -m comment --comment "Block FTP PASV to internal" -j DROP
iptables -A OUTPUT -p tcp --dport 1024:65535 -d 192.168.0.0/16 -m owner --uid-owner $USER -m comment --comment "Block FTP PASV to internal" -j DROP

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechN/A

  • SeverityMEDIUM

  • CVSS Score4.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • Red Hat CVE-2026-28295 Advisory

  • Red Hat Bug Report #2443004
  • Latest CVEs
  • CVE-2025-52793: Esselink.nu Settings CSRF Vulnerability

  • CVE-2025-52772: Virtual Moderator CSRF Vulnerability

  • CVE-2025-48279: WC MyParcel Belgium XSS Vulnerability

  • CVE-2025-39381: KiotViet Sync CSRF 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