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

CVE-2026-28397: NocoDB Stored XSS Vulnerability

CVE-2026-28397 is a stored cross-site scripting flaw in NocoDB that allows attackers to inject malicious scripts through unsanitized comments. This article covers the technical details, affected versions, and mitigation.

Published: March 6, 2026

CVE-2026-28397 Overview

CVE-2026-28397 is a stored Cross-Site Scripting (XSS) vulnerability affecting NocoDB, an open-source platform for building databases as spreadsheets. Prior to version 0.301.3, comments rendered via Vue's v-html directive without proper sanitization enable attackers to inject and execute arbitrary JavaScript code in the context of other users' browser sessions.

Critical Impact

Authenticated attackers can inject malicious scripts through comment fields, potentially leading to session hijacking, credential theft, and unauthorized actions on behalf of other NocoDB users.

Affected Products

  • NocoDB versions prior to 0.301.3
  • Self-hosted NocoDB deployments
  • NocoDB instances with user comment functionality enabled

Discovery Timeline

  • 2026-03-02 - CVE CVE-2026-28397 published to NVD
  • 2026-03-03 - Last updated in NVD database

Technical Details for CVE-2026-28397

Vulnerability Analysis

This stored XSS vulnerability (CWE-79) stems from the use of Vue.js's v-html directive to render user-submitted comment content without proper sanitization. The v-html directive outputs raw HTML directly into the DOM, making it inherently dangerous when processing untrusted input. When users create or edit comments containing malicious HTML or JavaScript, the application stores and subsequently renders this content in other users' browsers without escaping or filtering.

The network-based attack vector allows remote exploitation, though user interaction is required as victims must view a page containing the malicious comment. The vulnerability affects the confidentiality and integrity of user sessions within the NocoDB application context.

Root Cause

The root cause is the direct binding of user-controlled comment data to the v-html directive in Vue.js components without implementing input sanitization or output encoding. This architectural decision bypasses Vue's built-in XSS protections that would normally apply when using text interpolation ({{ }}). The lack of a Content Security Policy (CSP) or HTML sanitization library (such as DOMPurify) compounds the issue by allowing injected scripts to execute freely.

Attack Vector

An attacker with authenticated access to a NocoDB workspace can exploit this vulnerability by submitting a comment containing malicious HTML or JavaScript payloads. When other users navigate to views displaying these comments, the malicious script executes in their browser context. This can be leveraged for session token theft, phishing attacks, keylogging, or performing actions as the victim user within the application.

The attack requires no special privileges beyond the ability to create comments, making it accessible to any authenticated user within a shared workspace. The stored nature of this XSS means the payload persists and affects all users who view the compromised content.

Detection Methods for CVE-2026-28397

Indicators of Compromise

  • Unusual HTML tags or JavaScript code present in comment fields within the NocoDB database
  • Browser developer console errors related to blocked script execution if CSP is partially implemented
  • User reports of unexpected behavior or redirects when viewing comments
  • Database entries containing <script>, onerror=, onload=, or similar XSS payload patterns in comment tables

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block common XSS payload patterns in HTTP requests
  • Deploy browser-based XSS detection mechanisms that monitor for suspicious DOM modifications
  • Enable detailed application logging for comment creation and modification events
  • Use SentinelOne Singularity XDR to detect anomalous JavaScript execution patterns and potential data exfiltration attempts

Monitoring Recommendations

  • Review stored comments periodically for suspicious content patterns
  • Monitor network traffic for unusual outbound requests originating from client browsers during NocoDB sessions
  • Implement alerting for high-frequency comment creation or modification activities that may indicate automated exploitation attempts

How to Mitigate CVE-2026-28397

Immediate Actions Required

  • Upgrade NocoDB to version 0.301.3 or later immediately
  • Audit existing comments in the database for potentially malicious content
  • Implement a strict Content Security Policy (CSP) header to mitigate impact of any existing XSS payloads
  • Consider temporarily disabling comment functionality if immediate patching is not possible

Patch Information

NocoDB has addressed this vulnerability in version 0.301.3. The patch implements proper HTML sanitization for comment content before rendering. Organizations should update their NocoDB installations by pulling the latest release from the official repository. For detailed patch information, refer to the GitHub Release Notes for version 0.301.3 and the GitHub Security Advisory GHSA-rcph-x7mj-54mm.

Workarounds

  • Deploy a reverse proxy with WAF capabilities to filter XSS payloads in incoming requests
  • Restrict comment creation permissions to trusted users only until patching is complete
  • Implement browser-side XSS protection headers (X-XSS-Protection, though deprecated) as a defense-in-depth measure
  • Add a Content Security Policy header with script-src 'self' to prevent inline script execution
bash
# Example nginx configuration for CSP header
add_header Content-Security-Policy "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline';" always;

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechNocodb

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:N/VI:N/VA:N/SC:L/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Release Note 0.301.3
  • Vendor Resources
  • GitHub Security Advisory GHSA-rcph-x7mj-54mm
  • Related CVEs
  • CVE-2026-28401: NocoDB Stored XSS Vulnerability

  • CVE-2026-28398: NocoDB XSS Vulnerability

  • CVE-2026-28359: NocoDB XSS Vulnerability

  • CVE-2026-28357: NocoDB Stored 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