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

CVE-2026-29077: Frappe Auth Bypass Vulnerability

CVE-2026-29077 is an authentication bypass flaw in Frappe Framework allowing users to share documents with permissions they don't have. This article covers technical details, affected versions, impact, and mitigation.

Published: March 6, 2026

CVE-2026-29077 Overview

CVE-2026-29077 is a Broken Access Control vulnerability in Frappe, a full-stack web application framework. Due to insufficient validation when sharing documents, an authenticated user could share a document with permission levels that exceed their own access rights. This improper access control flaw (CWE-284) allows privilege escalation through the document sharing mechanism.

Critical Impact

Authenticated users can bypass permission restrictions by sharing documents with higher privileges than they possess, potentially exposing sensitive data and enabling unauthorized modifications.

Affected Products

  • Frappe Framework versions prior to 15.98.0
  • Frappe Framework versions prior to 14.100.0

Discovery Timeline

  • 2026-03-05 - CVE CVE-2026-29077 published to NVD
  • 2026-03-05 - Last updated in NVD database

Technical Details for CVE-2026-29077

Vulnerability Analysis

This vulnerability exists in Frappe's document sharing functionality. The framework fails to properly validate whether the user initiating a document share action actually possesses the permission level they are attempting to grant to another user. This creates a privilege escalation pathway where a user with limited permissions (such as read-only access) could share a document with write or delete permissions to another user or even themselves through alternate accounts.

The flaw enables horizontal and vertical privilege escalation scenarios. An attacker with minimal access to a Frappe-based application could systematically elevate their privileges across multiple documents and data types, potentially gaining administrative-level access to sensitive business data.

Root Cause

The root cause is improper access control (CWE-284) in the document sharing validation logic. When a share request is processed, the application does not verify that the requesting user has the permissions they are attempting to share. The validation only checks if the user can access the document, not whether their permission level meets or exceeds the permission being granted.

Attack Vector

The attack is network-based and requires low-privilege authentication. An attacker would:

  1. Authenticate to a Frappe-based application with any valid user account
  2. Access a document they have limited permissions on (e.g., read-only)
  3. Use the share functionality to grant elevated permissions (e.g., write, delete) to a target user
  4. The target user (which could be an alternate account controlled by the attacker) now has elevated access

The vulnerability does not require user interaction and has no impact on availability, but poses significant risks to data confidentiality and integrity. An attacker could use this to exfiltrate sensitive information or modify critical business documents.

Detection Methods for CVE-2026-29077

Indicators of Compromise

  • Unusual document sharing activity where permissions granted exceed the sharer's own access level
  • Multiple share operations from accounts with limited privileges granting elevated access
  • Audit logs showing permission grants that don't align with the user's role-based access

Detection Strategies

  • Monitor application audit logs for document share events and correlate with user permission levels
  • Implement alerting for share operations where the granted permission exceeds the sharer's documented access rights
  • Review database tables related to document sharing for anomalous permission entries

Monitoring Recommendations

  • Enable verbose logging on Frappe's document sharing API endpoints
  • Deploy application-layer monitoring to track permission changes and sharing activities
  • Establish baseline sharing patterns and alert on deviations

How to Mitigate CVE-2026-29077

Immediate Actions Required

  • Upgrade Frappe Framework to version 15.98.0 or later (for 15.x branch)
  • Upgrade Frappe Framework to version 14.100.0 or later (for 14.x branch)
  • Audit existing document shares for permission escalation that may have already occurred
  • Review user accounts for suspicious sharing activity patterns

Patch Information

The vulnerability has been patched in Frappe Framework versions 15.98.0 and 14.100.0. The fix implements proper validation to ensure users cannot share documents with permissions exceeding their own access level. For detailed patch information, refer to the GitHub Security Advisory.

Workarounds

  • Temporarily restrict document sharing capabilities for non-administrative users until patches can be applied
  • Implement network-level access controls to limit exposure of Frappe applications
  • Review and tighten role-based access controls to minimize the potential impact of privilege escalation
  • Consider implementing additional application-level validation for share operations through custom hooks
bash
# Upgrade Frappe to patched version
bench update --apps frappe
bench migrate

# Verify installed version
bench version

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechFrappe

  • SeverityHIGH

  • CVSS Score7.1

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-284
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-39351: Frappe Auth Bypass Vulnerability

  • CVE-2026-39415: Frappe LMS Auth Bypass Vulnerability

  • CVE-2026-40888: Frappe HR Information Disclosure Flaw

  • CVE-2026-3673: Frappe XSS Vulnerability via User Tags
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