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

CVE-2026-39383: Gotenberg SSRF Vulnerability

CVE-2026-39383 is a server-side request forgery flaw in Gotenberg 8.29.1 that enables attackers to force arbitrary HTTP POST requests via crafted webhook URLs. This article covers the technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-39383 Overview

CVE-2026-39383 is a Server-Side Request Forgery (SSRF) vulnerability [CWE-918] in Gotenberg, an API-based document conversion tool. The flaw exists in version 8.29.1, where the FilterDeadline function in filter.go returns nil unconditionally when both the allow-list and deny-list are empty, which is the default configuration. An unauthenticated attacker with network access can supply a crafted URL in the Gotenberg-Webhook-Url request header to force the server to issue outbound HTTP POST requests to arbitrary destinations.

Critical Impact

Remote unauthenticated attackers can pivot through Gotenberg to probe internal networks, reach cloud metadata endpoints, and trigger side-effects on internal services.

Affected Products

  • Gotenberg version 8.29.1
  • Gotenberg deployments running default webhook configuration
  • Gotenberg instances exposed to untrusted network clients

Discovery Timeline

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

Technical Details for CVE-2026-39383

Vulnerability Analysis

Gotenberg accepts a Gotenberg-Webhook-Url header that instructs the server where to POST converted documents. The FilterDeadline function in filter.go is responsible for validating these URLs against an allow-list and deny-list. When both lists are empty, which is the default, the function returns nil and accepts any URL without restriction.

This condition produces a blind SSRF. Gotenberg posts the converted document to the supplied URL and inspects only the response status code. The target's response body is never returned to the requester. Attackers infer behavior from whether the error callback fires, allowing reconnaissance of internal infrastructure and reachability checks against cloud metadata services such as 169.254.169.254.

Root Cause

The root cause is missing default-deny logic in FilterDeadline. When operators do not explicitly configure GOTENBERG_API_WEBHOOK_ALLOW_LIST or GOTENBERG_API_WEBHOOK_DENY_LIST, the filter accepts every URL, including RFC-1918 private addresses, link-local ranges, and loopback destinations.

Attack Vector

The attack requires only network access to the Gotenberg HTTP API. The attacker submits a conversion request with a Gotenberg-Webhook-Url header pointing at an internal target. Gotenberg performs the conversion and dispatches a POST to the attacker-specified destination. The retryable HTTP client issues up to four automatic retries per request, amplifying every probe and increasing the chance of triggering side-effects on idempotent-unsafe endpoints.

No authentication, user interaction, or special privileges are required. See the GitHub Security Advisory GHSA-5vh4-rgv7-p9g4 for full technical details.

Detection Methods for CVE-2026-39383

Indicators of Compromise

  • Inbound HTTP requests to Gotenberg containing the Gotenberg-Webhook-Url header referencing RFC-1918, loopback, or link-local destinations.
  • Outbound POST requests from Gotenberg hosts to internal services, cloud metadata endpoints such as 169.254.169.254, or unexpected external hosts.
  • Repeated webhook callback errors in Gotenberg logs corresponding to bursts of four retry attempts per probe.

Detection Strategies

  • Inspect Gotenberg access logs for Gotenberg-Webhook-Url header values that resolve to private, loopback, or metadata IP ranges.
  • Correlate Gotenberg egress traffic with conversion request timestamps to identify webhook-driven SSRF attempts.
  • Alert on outbound POST traffic from document-conversion workloads to non-approved destinations.

Monitoring Recommendations

  • Enable network flow logging on subnets hosting Gotenberg and forward records to a central analytics platform for review.
  • Monitor for accesses to cloud instance metadata services originating from Gotenberg containers or pods.
  • Track HTTP 4xx and 5xx response patterns from Gotenberg's webhook client that indicate scanning behavior.

How to Mitigate CVE-2026-39383

Immediate Actions Required

  • Upgrade Gotenberg to version 8.31.0, which contains the fix for FilterDeadline.
  • Restrict network egress from Gotenberg hosts to only approved webhook receivers using firewall rules or service mesh policies.
  • Place Gotenberg behind authenticated reverse proxies and block external clients from supplying the Gotenberg-Webhook-Url header.

Patch Information

The issue is fixed in Gotenberg version 8.31.0. Operators should pull the updated container image or binary and redeploy. Refer to the GitHub Security Advisory for release notes and verification details.

Workarounds

  • Set GOTENBERG_API_WEBHOOK_ALLOW_LIST to a regular expression matching only trusted webhook receivers.
  • Set GOTENBERG_API_WEBHOOK_DENY_LIST to block RFC-1918, loopback, and link-local ranges including 169.254.0.0/16.
  • Enforce egress filtering at the network layer to prevent Gotenberg from reaching internal services or cloud metadata endpoints.
bash
# Configuration example
export GOTENBERG_API_WEBHOOK_ALLOW_LIST='^https://webhook\.example\.com/.*$'
export GOTENBERG_API_WEBHOOK_DENY_LIST='^https?://(127\.|10\.|192\.168\.|172\.(1[6-9]|2[0-9]|3[0-1])\.|169\.254\.|::1|fe80:).*'

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechGotenberg

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/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-918
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-40280: Gotenberg Auth Bypass Vulnerability

  • CVE-2026-40281: Gotenberg Path Traversal Vulnerability

  • CVE-2026-35458: Gotenberg API DoS Vulnerability

  • CVE-2026-27018: Gotenberg Auth Bypass 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