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

CVE-2026-40280: Gotenberg Auth Bypass Vulnerability

CVE-2026-40280 is an authentication bypass vulnerability in Gotenberg that allows attackers to access internal network services by capitalizing URL schemes. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-40280 Overview

CVE-2026-40280 is a Server-Side Request Forgery (SSRF) vulnerability in Gotenberg, an API-based document conversion tool. Versions 8.30.1 and earlier ship deny-lists for the --webhook-deny-list and --api-download-from-deny-list flags that use a case-sensitive regular expression (^https?://) to filter URL schemes. Attackers bypass the filter by capitalizing the scheme (for example HTTP:// or Http://), allowing unauthenticated requests to reach internal services. The flaw reintroduces the same security weakness previously addressed in CVE-2026-27018. Maintainers fixed the issue in Gotenberg 8.31.0.

Critical Impact

Unauthenticated attackers can reach private IP ranges, loopback interfaces, and cloud instance metadata endpoints such as http://169.254.169.254/latest/meta-data/, exposing credentials and internal services.

Affected Products

  • Gotenberg versions 8.30.1 and earlier
  • Deployments using --webhook-deny-list for outbound webhook filtering
  • Deployments using --api-download-from-deny-list for asset download filtering

Discovery Timeline

  • 2026-05-05 - CVE-2026-40280 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-40280

Vulnerability Analysis

Gotenberg accepts URLs from API clients for webhooks and remote asset downloads. Operators rely on deny-list flags to block requests targeting internal infrastructure. The default deny-list patterns include the regular expression ^https?:// to anchor scheme matching. This regex is case-sensitive, so it only matches lowercase http:// and https:// prefixes.

Go's net/url.Parse() normalizes the scheme to lowercase before opening the outbound TCP connection. As a result, an attacker can submit a URL with mixed-case or uppercase scheme such as HTTP://169.254.169.254/, bypass the regex check, and still trigger a valid HTTP request to the target. The bypass restores SSRF capability that the project previously fixed in CVE-2026-27018, indicating an incomplete remediation.

The weakness is classified as [CWE-918] Server-Side Request Forgery. Successful exploitation lets attackers reach loopback addresses, RFC 1918 private ranges, and cloud metadata services, which often expose IAM credentials on AWS, GCP, and Azure.

Root Cause

The root cause is a case-sensitive regular expression used for security filtering against input that downstream code normalizes to a different case. The deny-list anchor ^https?:// does not match HTTP://, HTTPS://, or Http://, but the Go HTTP client treats those schemes as equivalent after normalization. The mismatch between the validation layer and the execution layer creates a parser differential that voids the deny-list.

Attack Vector

An unauthenticated attacker sends a conversion request to a Gotenberg endpoint that accepts a URL parameter, such as a webhook callback or remote download URL. The attacker supplies a URL with a capitalized scheme pointing at an internal target. Gotenberg's deny-list regex fails to match, the request passes validation, and the server issues an outbound HTTP request to the internal resource. The attacker receives the response or its side effects through the service workflow.

The vulnerability mechanism is documented in the GitHub Security Advisory GHSA-5q7p-7jgv-ww56 and the upstream fix commit.

Detection Methods for CVE-2026-40280

Indicators of Compromise

  • Outbound requests from Gotenberg containers to 169.254.169.254, 127.0.0.1, or RFC 1918 ranges
  • Inbound API requests with URL parameters containing uppercase or mixed-case schemes such as HTTP://, HTTPS://, or Http://
  • Gotenberg access logs showing webhook or download URLs with non-lowercase schemes
  • Unexpected DNS lookups from the Gotenberg host targeting internal hostnames

Detection Strategies

  • Inspect HTTP request bodies and query strings reaching Gotenberg for URL fields that do not match a strict lowercase ^https?:// pattern
  • Correlate Gotenberg outbound connections against an allow-list of expected webhook destinations
  • Alert on any outbound traffic from the Gotenberg service to link-local or metadata IP addresses
  • Review reverse-proxy or WAF logs for SSRF probing patterns referencing cloud metadata paths

Monitoring Recommendations

  • Capture network flow logs for the Gotenberg workload and forward them to a centralized analytics platform
  • Enable egress filtering at the host or network layer and log every blocked attempt to internal ranges
  • Track Gotenberg version strings across the fleet to identify hosts still running 8.30.1 or earlier

How to Mitigate CVE-2026-40280

Immediate Actions Required

  • Upgrade Gotenberg to version 8.31.0 or later on every deployment
  • Block egress from the Gotenberg workload to 169.254.169.254, loopback, and private IP ranges at the network layer
  • Rotate any cloud IAM credentials that may have been exposed through the instance metadata service
  • Audit recent Gotenberg API requests for URL parameters using uppercase schemes

Patch Information

The maintainers fixed the deny-list bypass in Gotenberg 8.31.0. The patch updates the scheme-matching logic so that uppercase and mixed-case schemes are normalized before the deny-list check. Review the fix commit 3f01ca18 and the GHSA-jjwv-57xh-xr6r advisory for full technical details.

Workarounds

  • Place Gotenberg behind a reverse proxy that rejects requests containing URL parameters with non-lowercase schemes
  • Enforce IMDSv2 on AWS instances to require session tokens for metadata access
  • Run Gotenberg in a network namespace or VPC with no route to internal services or metadata endpoints
  • Apply strict egress firewall rules limiting outbound traffic to known webhook destinations
bash
# Example egress restriction using iptables to block metadata access
iptables -A OUTPUT -d 169.254.169.254 -j DROP
iptables -A OUTPUT -d 127.0.0.0/8 -j DROP
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

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechGotenberg

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:H/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-918
  • Technical References
  • GitHub Security Advisory

  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-27018: Gotenberg Auth Bypass Vulnerability

  • CVE-2026-39383: Gotenberg SSRF Vulnerability

  • CVE-2026-40281: Gotenberg Path Traversal Vulnerability

  • CVE-2026-35458: Gotenberg API DoS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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