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

CVE-2026-41572: Note Mark Authentication Bypass Flaw

CVE-2026-41572 is an authentication bypass vulnerability in Note Mark that allows unauthorized access to soft-deleted notes and assets. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 7, 2026

CVE-2026-41572 Overview

CVE-2026-41572 is a broken access control vulnerability [CWE-285] in Note Mark, an open-source note-taking application. Versions prior to 0.19.3 fail to enforce soft-delete state on note and asset queries. After an owner soft-deletes a public book, its notes and uploaded assets remain readable through /api/notes/{id}, /api/notes/{id}/content, the slug URL, and the asset endpoints. Unauthenticated callers who possess the note ID or slug path retain full read access. The flaw originates in GORM's soft-delete scope, which does not propagate to raw JOIN books ... clauses used by note and asset queries. Maintainers fixed the issue in version 0.19.3.

Critical Impact

Unauthenticated remote attackers can read content from soft-deleted public books, exposing notes and uploaded assets that owners believed were removed.

Affected Products

  • Note Mark versions prior to 0.19.3
  • Open-source self-hosted Note Mark deployments
  • Public books and associated assets within affected instances

Discovery Timeline

  • 2026-05-04 - CVE CVE-2026-41572 published to NVD
  • 2026-05-04 - Last updated in NVD database

Technical Details for CVE-2026-41572

Vulnerability Analysis

Note Mark uses GORM, a Go object-relational mapper, to manage database access. GORM provides an automatic soft-delete scope that filters out records with a non-null deleted_at column from standard model queries. The note and asset endpoints retrieve records using raw JOIN books ... SQL clauses rather than GORM's model-level abstractions. The soft-delete scope does not apply to these joins, so deleted books continue to satisfy join conditions during query execution.

The consequence is straightforward. When an owner soft-deletes a public book, the parent record is flagged as deleted, but its child notes and assets remain reachable. Calls to /api/notes/{id}, /api/notes/{id}/content, the slug URL, and the asset endpoints return data as if the book were still active. No authentication is required because the original public book did not require authentication.

Root Cause

The root cause is an incomplete authorization check tied to ORM scope behavior. Soft-delete enforcement in GORM applies only when queries flow through the model's default scope. Raw join clauses bypass that scope and read directly from the underlying tables. The application logic does not include an explicit books.deleted_at IS NULL predicate in the affected queries, so deletion state is never validated at the access layer.

Attack Vector

An unauthenticated attacker who previously captured a note ID or slug path from a public book can continue to read that content after deletion. The attacker issues a standard HTTP GET request to the note, content, slug, or asset endpoint. The server returns the resource because the query joins against the still-present book row without checking its soft-delete flag. Attack complexity is low and requires no user interaction.

No verified exploit code is available. Refer to the GitHub Security Advisory GHSA-3gr9-485j-v4xf for technical details.

Detection Methods for CVE-2026-41572

Indicators of Compromise

  • HTTP GET requests to /api/notes/{id}, /api/notes/{id}/content, or asset endpoints for note IDs that map to soft-deleted books
  • Successful unauthenticated responses for slug URLs that owners have deleted from the user interface
  • Access patterns from clients that retain note IDs collected before deletion events

Detection Strategies

  • Correlate book soft-delete events in application logs with subsequent successful reads on associated note and asset endpoints
  • Run database queries that compare notes.book_id and asset references against books rows where deleted_at IS NOT NULL and flag any read activity
  • Monitor reverse proxy or web server access logs for 200-status responses on note or asset paths after the parent book is removed

Monitoring Recommendations

  • Enable verbose request logging on the Note Mark API and forward events to a centralized logging platform
  • Alert on read traffic to note IDs whose parent book has a non-null deleted_at timestamp
  • Review web application firewall logs for repeated unauthenticated requests to note and asset endpoints

How to Mitigate CVE-2026-41572

Immediate Actions Required

  • Upgrade Note Mark to version 0.19.3 or later, available from the GitHub Release v0.19.3 page
  • Audit existing soft-deleted books and either hard-delete them or rotate the affected note IDs and slugs
  • Review access logs for unauthorized reads against soft-deleted resources and notify affected users if exposure is confirmed

Patch Information

The maintainers patched the issue in Note Mark 0.19.3. The fix updates the affected note and asset queries so that the books.deleted_at IS NULL condition is enforced, aligning the raw join clauses with GORM's soft-delete scope. Patch details are available in the GitHub Security Advisory GHSA-3gr9-485j-v4xf.

Workarounds

  • Hard-delete books instead of soft-deleting them until the upgrade is applied
  • Restrict access to the Note Mark instance behind authentication or network controls to limit unauthenticated reads
  • Apply database-level constraints or views that filter out rows referencing soft-deleted books for read operations
bash
# Configuration example: upgrade Note Mark container to patched version
docker pull ghcr.io/enchant97/note-mark:0.19.3
docker stop note-mark && docker rm note-mark
docker run -d --name note-mark -p 8080:8080 ghcr.io/enchant97/note-mark:0.19.3

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechNote Mark

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.03%

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

  • GitHub Security Advisory GHSA-3gr9-485j-v4xf
  • Related CVEs
  • CVE-2026-41571: Note Mark Auth Bypass Vulnerability

  • CVE-2026-40263: Note Mark Auth Bypass Vulnerability

  • CVE-2026-40265: Note Mark Information Disclosure Flaw

  • CVE-2026-40262: Note Mark XSS 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