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
    • 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-33070

CVE-2026-33070: Filerise Auth Bypass Vulnerability

CVE-2026-33070 is an authentication bypass flaw in Filerise that allows unauthenticated attackers to delete arbitrary file share links, causing denial of service. This article covers technical details, affected versions, and patches.

Published: March 27, 2026

CVE-2026-33070 Overview

CVE-2026-33070 is a missing-authentication vulnerability affecting FileRise, a self-hosted web file manager and WebDAV server. In versions prior to 3.8.0, the deleteShareLink endpoint lacks authentication controls, allowing any unauthenticated user to delete arbitrary file share links by simply providing the share token. This vulnerability enables denial of service attacks against shared file access capabilities.

Critical Impact

Unauthenticated attackers can delete arbitrary file share links, disrupting file sharing operations and causing denial of service to legitimate users relying on shared access.

Affected Products

  • FileRise versions prior to 3.8.0
  • Self-hosted FileRise WebDAV server installations
  • All platforms running vulnerable FileRise deployments

Discovery Timeline

  • 2026-03-20 - CVE-2026-33070 published to NVD
  • 2026-03-23 - Last updated in NVD database

Technical Details for CVE-2026-33070

Vulnerability Analysis

This vulnerability is classified as CWE-306 (Missing Authentication for Critical Function). The POST /api/file/deleteShareLink.php endpoint directly calls FileController::deleteShareLink() without implementing any authentication, authorization, or CSRF validation mechanisms before executing the share link deletion operation.

The absence of security controls means that any anonymous HTTP client with knowledge of a share token can destroy legitimate share links. This design flaw exposes the file sharing functionality to trivial abuse, as share tokens may be observable in URLs or could be enumerated by attackers.

The vulnerability requires network access and some level of complexity to exploit (obtaining valid share tokens), but once tokens are known, exploitation is straightforward. The impact includes loss of integrity (share links deleted without authorization) and availability (legitimate users lose access to shared files).

Root Cause

The root cause is the complete absence of authentication and authorization checks in the FileController::deleteShareLink() method. The endpoint was implemented without verifying that the requesting user has ownership or administrative privileges over the share link being deleted. Additionally, no CSRF protection was implemented, making the endpoint vulnerable to cross-site attacks.

Attack Vector

The attack vector is network-based, requiring the attacker to send HTTP POST requests to the vulnerable endpoint. An attacker who obtains or guesses a valid share token can craft a malicious request to the /api/file/deleteShareLink.php endpoint to delete the corresponding share link.

The exploitation mechanism involves sending an unauthenticated POST request to the vulnerable endpoint with a target share token. Since no session validation or ownership checks are performed, the server processes the deletion request regardless of who initiated it. Attackers could potentially enumerate share tokens or intercept them through network monitoring to discover valid targets.

Detection Methods for CVE-2026-33070

Indicators of Compromise

  • Unusual volume of POST requests to /api/file/deleteShareLink.php from external or unauthenticated sources
  • Multiple share link deletion events occurring in rapid succession without corresponding authenticated user sessions
  • HTTP access logs showing requests to the deleteShareLink endpoint from unexpected IP addresses

Detection Strategies

  • Monitor web server access logs for unauthenticated requests to /api/file/deleteShareLink.php
  • Implement alerting on anomalous patterns of share link deletions, particularly bulk deletions in short timeframes
  • Review application logs for FileController::deleteShareLink() invocations that lack associated authenticated sessions
  • Deploy web application firewalls (WAF) with rules to detect and block suspicious requests to the vulnerable endpoint

Monitoring Recommendations

  • Enable detailed logging on the FileRise application to capture all share link deletion events with source IP information
  • Set up network monitoring to detect reconnaissance activity against file sharing endpoints
  • Implement rate limiting on sensitive API endpoints as an additional detection and mitigation layer
  • Consider deploying intrusion detection systems (IDS) with signatures for this vulnerability pattern

How to Mitigate CVE-2026-33070

Immediate Actions Required

  • Upgrade FileRise to version 3.8.0 or later immediately
  • Audit recent share link deletion logs to identify potential exploitation attempts
  • Temporarily restrict network access to the /api/file/deleteShareLink.php endpoint if immediate patching is not possible
  • Review and regenerate critical share links that may have been targeted

Patch Information

FileRise version 3.8.0 addresses this vulnerability by implementing proper authentication and authorization checks on the deleteShareLink endpoint. The fix ensures that only authenticated users with appropriate permissions can delete share links. Users should upgrade to version 3.8.0 or later by downloading the release from the GitHub Release v3.8.0. For additional details, refer to the GitHub Security Advisory GHSA-vh5m-w36c-99xv.

Workarounds

  • Implement web server or reverse proxy access controls to require authentication for all API endpoints
  • Use firewall rules to restrict access to the FileRise API from trusted IP addresses only
  • Deploy a web application firewall (WAF) to block unauthenticated requests to sensitive endpoints
  • Temporarily disable the share link functionality if not critical to operations until patching is complete
bash
# Example: Restrict access to deleteShareLink endpoint via Apache configuration
<Location "/api/file/deleteShareLink.php">
    Require valid-user
    AuthType Basic
    AuthName "Restricted Access"
    AuthUserFile /etc/apache2/.htpasswd
</Location>

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechFilerise

  • SeverityMEDIUM

  • CVSS Score4.8

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:L
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-306
  • Technical References
  • GitHub Release v3.8.0
  • Vendor Resources
  • GitHub Security Advisory GHSA-vh5m-w36c-99xv
  • Related CVEs
  • CVE-2026-33477: FileRise Auth Bypass Vulnerability

  • CVE-2026-33330: Filerise Auth Bypass Vulnerability

  • CVE-2026-33072: Filerise Auth Bypass Vulnerability

  • CVE-2026-33329: Filerise Path Traversal 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