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

CVE-2026-24767: NocoDB Blind SSRF Vulnerability

CVE-2026-24767 is a blind Server-Side Request Forgery flaw in NocoDB that allows attackers to make unauthorized outbound requests. This article covers the technical details, affected versions, impact, and mitigation.

Published: January 29, 2026

CVE-2026-24767 Overview

NocoDB, an open-source platform for building databases as spreadsheets, contains a blind Server-Side Request Forgery (SSRF) vulnerability in its uploadViaURL functionality. Prior to version 0.301.0, the application fails to validate the initial HEAD request when processing URL-based file uploads, allowing authenticated attackers to make limited outbound requests to arbitrary URLs before SSRF protections are enforced.

Critical Impact

Authenticated attackers can bypass SSRF protections during the initial metadata request phase, potentially enabling internal network reconnaissance or interaction with internal services.

Affected Products

  • NocoDB versions prior to 0.301.0

Discovery Timeline

  • 2026-01-28 - CVE CVE-2026-24767 published to NVD
  • 2026-01-29 - Last updated in NVD database

Technical Details for CVE-2026-24767

Vulnerability Analysis

This vulnerability is classified under CWE-918 (Server-Side Request Forgery). The flaw exists in the uploadViaURL feature, which allows users to upload files by providing a URL. While NocoDB implements SSRF protections for the actual file retrieval operation, the initial HEAD request used to gather file metadata executes without any validation or filtering.

This creates a race condition in the security controls where the metadata gathering phase operates in an unprotected state. An attacker with low-level privileges can craft malicious URLs targeting internal network resources, cloud metadata endpoints, or other sensitive internal services. Although the vulnerability is blind (the attacker does not receive the response content), the ability to trigger outbound requests to arbitrary destinations poses significant risks.

The attack requires network access and authenticated user privileges, with low attack complexity once those prerequisites are met. The changed scope indicates the vulnerability can affect resources beyond the vulnerable component's security boundary.

Root Cause

The root cause is the absence of URL validation and SSRF filtering on the initial HEAD request in the uploadViaURL functionality. The developers implemented SSRF protections for the subsequent file retrieval logic but overlooked applying the same controls to the metadata request that precedes it.

Attack Vector

The attack is network-based, requiring an authenticated user to submit a crafted URL through the uploadViaURL feature. The attacker constructs a URL pointing to an internal resource (such as http://169.254.169.254/ for cloud metadata services or internal IP addresses). When the application processes this URL, it issues an unprotected HEAD request to the target, potentially revealing service availability through timing analysis or triggering actions on internal services that respond to HEAD requests.

The vulnerability allows limited outbound requests before the SSRF controls are applied, making it a "time-of-check to time-of-use" style vulnerability where the security validation occurs too late in the request processing pipeline.

Detection Methods for CVE-2026-24767

Indicators of Compromise

  • Unusual outbound HEAD requests originating from the NocoDB server to internal IP ranges or cloud metadata endpoints
  • Application logs showing uploadViaURL requests with URLs targeting internal network resources (e.g., 10.x.x.x, 172.16.x.x, 192.168.x.x, 169.254.169.254)
  • Network traffic from the NocoDB server to unexpected internal services or known SSRF target endpoints

Detection Strategies

  • Monitor egress traffic from NocoDB servers for requests to internal IP ranges or localhost addresses
  • Implement web application firewall (WAF) rules to detect and block common SSRF payload patterns in URL parameters
  • Review application logs for uploadViaURL endpoint usage with suspicious URL patterns
  • Deploy network segmentation monitoring to detect lateral movement attempts from the NocoDB server

Monitoring Recommendations

  • Enable detailed logging for all uploadViaURL requests including the target URLs
  • Configure alerting for outbound connections from the NocoDB server to internal network segments
  • Monitor for timing-based reconnaissance patterns where multiple HEAD requests are made to sequential internal IP addresses

How to Mitigate CVE-2026-24767

Immediate Actions Required

  • Upgrade NocoDB to version 0.301.0 or later immediately
  • Review application logs for evidence of exploitation attempts targeting the uploadViaURL endpoint
  • Implement network-level egress filtering to restrict outbound requests from the NocoDB server to approved destinations only

Patch Information

NocoDB version 0.301.0 contains a patch that addresses this vulnerability by applying SSRF validation to the initial HEAD request in the uploadViaURL functionality. Organizations should upgrade to this version or later as soon as possible. For additional details, refer to the GitHub Security Advisory.

Workarounds

  • Implement network-level egress filtering to block outbound requests from the NocoDB server to internal network ranges and cloud metadata endpoints
  • Deploy a reverse proxy or WAF in front of NocoDB to validate and sanitize URLs submitted to the uploadViaURL endpoint
  • Restrict access to the uploadViaURL functionality to trusted users only until the patch can be applied
  • Segment the NocoDB server network to limit the potential impact of SSRF attacks
bash
# Example: iptables egress filtering to block common SSRF targets
# Block requests to internal networks and cloud metadata endpoints
iptables -A OUTPUT -d 10.0.0.0/8 -j DROP
iptables -A OUTPUT -d 172.16.0.0/12 -j DROP
iptables -A OUTPUT -d 192.168.0.0/16 -j DROP
iptables -A OUTPUT -d 169.254.169.254 -j DROP

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechNocodb

  • SeverityMEDIUM

  • CVSS Score4.9

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-28401: NocoDB Stored XSS Vulnerability

  • CVE-2026-28399: Nocodb SQL Injection Vulnerability

  • CVE-2026-28398: NocoDB XSS Vulnerability

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