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-33477

CVE-2026-33477: FileRise Auth Bypass Vulnerability

CVE-2026-33477 is an authorization bypass flaw in FileRise that allows users with read_own access to view file snippets from other users in shared folders. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-33477 Overview

CVE-2026-33477 is an authorization bypass vulnerability affecting FileRise, a self-hosted web-based file manager that provides multi-file upload, editing, and batch operations capabilities. The vulnerability exists in the file snippet endpoint (/api/file/snippet.php) where server-side authorization checks fail to properly enforce read_own permissions. This flaw allows an authenticated user with restricted access to retrieve file snippet content from files uploaded by other users within the same folder.

Critical Impact

Authenticated users can access unauthorized file content belonging to other users, potentially exposing sensitive information through hover preview functionality.

Affected Products

  • FileRise versions 2.3.7 through 3.10.0

Discovery Timeline

  • 2026-03-26 - CVE CVE-2026-33477 published to NVD
  • 2026-03-26 - Last updated in NVD database

Technical Details for CVE-2026-33477

Vulnerability Analysis

This vulnerability is classified as CWE-863 (Incorrect Authorization), which occurs when software does not properly perform authorization checks. In the case of FileRise, the read_own permission model is designed to restrict users to viewing only their own uploaded files within a shared folder. However, the /api/file/snippet.php endpoint fails to validate file ownership before returning snippet content, effectively bypassing this access control mechanism.

The flaw specifically affects the hover preview functionality, where users can preview file content without fully opening the file. When a user with read_own permissions requests a snippet, the server returns the content without verifying that the requesting user is the original uploader of the file.

Root Cause

The root cause is a server-side authorization flaw in the read_own enforcement logic for hover previews. The snippet endpoint does not properly check file ownership before serving content, allowing any authenticated user with folder access to retrieve snippets from files they do not own. This represents a horizontal privilege escalation where users can access resources belonging to other users at the same permission level.

Attack Vector

The attack is network-based and requires low-privilege authenticated access. An attacker needs valid credentials with at least read_own permissions on a target folder. By making direct requests to the /api/file/snippet.php endpoint with file identifiers belonging to other users, the attacker can retrieve preview content from files they should not have access to.

The attack does not require user interaction and can be automated to enumerate and extract snippets from all files within accessible folders. While the vulnerability only exposes snippet content rather than complete files, sensitive information such as document headers, code fragments, or personal data could be disclosed.

Detection Methods for CVE-2026-33477

Indicators of Compromise

  • Unusual access patterns to /api/file/snippet.php with file IDs not owned by the requesting user
  • High volume of snippet requests from a single user account across multiple files
  • API access logs showing authenticated users requesting snippets for files outside their ownership scope

Detection Strategies

  • Monitor web server access logs for requests to the snippet endpoint correlating user sessions with file ownership records
  • Implement application-level logging that tracks file ownership verification failures
  • Configure alerts for users accessing an abnormally high number of unique file snippets

Monitoring Recommendations

  • Enable verbose logging on the FileRise application to capture all snippet endpoint requests
  • Cross-reference snippet access logs with file upload metadata to identify unauthorized access attempts
  • Review audit trails for users accessing shared folders with read_own restrictions

How to Mitigate CVE-2026-33477

Immediate Actions Required

  • Upgrade FileRise to version 3.11.0 or later immediately
  • Review access logs for any suspicious snippet endpoint activity prior to patching
  • Audit shared folders using read_own permissions to assess potential data exposure

Patch Information

FileRise has released version 3.11.0 which addresses this authorization bypass vulnerability. The fix implements proper ownership validation in the snippet endpoint before returning file content. Users should upgrade through the standard FileRise update process. For detailed release information, see the GitHub Release v3.11.0 and the GitHub Security Advisory GHSA-62wx-vp78-2p83.

Workarounds

  • Temporarily disable the hover preview/snippet functionality if patching cannot be performed immediately
  • Restrict folder access to only trusted users until the patch is applied
  • Consider temporarily converting read_own permissions to more restrictive access controls
  • Implement network-level access controls to limit who can reach the FileRise application
bash
# Verify FileRise version after upgrade
cat /path/to/filerise/version.txt
# Expected output: 3.11.0 or higher

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.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-863
  • Technical References
  • GitHub Release v3.11.0

  • GitHub Security Advisory GHSA-62wx-vp78-2p83
  • Related CVEs
  • CVE-2026-33330: Filerise Auth Bypass Vulnerability

  • CVE-2026-33072: Filerise Auth Bypass Vulnerability

  • CVE-2026-33070: 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