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

CVE-2026-27129: Craft CMS SSRF Bypass Vulnerability

CVE-2026-27129 is an SSRF bypass vulnerability in Craft CMS that exploits IPv6 hostname resolution to evade security protections. This article covers the technical details, affected versions, exploitation requirements, and mitigation.

Published: February 27, 2026

CVE-2026-27129 Overview

CVE-2026-27129 is a Server-Side Request Forgery (SSRF) bypass vulnerability in Craft CMS affecting versions 4.5.0-RC1 through 4.16.18 and 5.0.0-RC1 through 5.8.22. The vulnerability exists in the GraphQL Asset mutation's SSRF validation mechanism, which uses PHP's gethostbyname() function to resolve hostnames for blocklist comparison. Since gethostbyname() only resolves IPv4 addresses, hostnames with only AAAA (IPv6) DNS records cause the function to return the original hostname string, causing blocklist comparisons to consistently fail and completely bypassing SSRF protections.

This vulnerability is a bypass of the security fix for CVE-2025-68437, demonstrating that the original mitigation was incomplete for IPv6-only environments.

Critical Impact

Authenticated attackers with GraphQL schema permissions can bypass SSRF protections to access internal services, cloud metadata endpoints, and sensitive network resources via IPv6 addresses.

Affected Products

  • Craft CMS versions 4.5.0-RC1 through 4.16.18
  • Craft CMS versions 5.0.0-RC1 through 5.8.22
  • Craft CMS installations with GraphQL Asset mutation enabled and write permissions configured

Discovery Timeline

  • 2026-02-24 - CVE-2026-27129 published to NVD
  • 2026-02-24 - Last updated in NVD database

Technical Details for CVE-2026-27129

Vulnerability Analysis

The SSRF vulnerability stems from an incomplete fix for CVE-2025-68437. The original security patch implemented hostname resolution using gethostbyname() to convert hostnames to IP addresses before checking against an internal blocklist. However, this approach has a critical flaw: gethostbyname() is an IPv4-only function that cannot resolve AAAA (IPv6) DNS records.

When an attacker supplies a hostname that only has IPv6 DNS records, gethostbyname() cannot perform the resolution and returns the original hostname string unchanged. Since the blocklist contains IP addresses (not hostnames), the comparison always fails, allowing the attacker to bypass SSRF protections entirely.

Exploitation requires specific GraphQL schema permissions: the ability to edit assets in a configured volume and create assets in that volume. These permissions may be granted to authenticated users with appropriate GraphQL schema access. In misconfigured installations where the Public Schema has write permissions enabled, this could potentially be exploited by unauthenticated attackers.

Root Cause

The root cause is the use of gethostbyname() for hostname-to-IP resolution in security-critical validation logic. This PHP function only supports IPv4 address resolution. When presented with a hostname that has only AAAA records (IPv6), the function returns the hostname string itself rather than the resolved IP address or a failure indicator, causing the subsequent blocklist validation to be ineffective.

Attack Vector

The attack is network-based and requires low privileges (authenticated user with specific GraphQL permissions). An attacker can craft a GraphQL Asset mutation request with a URL pointing to a hostname configured with only IPv6 DNS records. The target hostname would resolve to an internal IPv6 address (such as cloud metadata endpoints like fd00:ec2:: for AWS IMDS), bypassing the SSRF blocklist entirely.

The security patch addresses this by adding explicit checks for IPv6 address prefixes associated with sensitive internal services:

php
            return false;
        }

+        $v6Prefixes = [
+            'fd00:ec2::', // AWS IMDS, DNS, NTP
+            'fd20:ce::', // GCP
+            '::1', // Loopback
+            'fe80:', // Link-local
+            '::ffff:', // IPv4-mapped IPv6
+        ];
+
+        foreach ($v6Prefixes as $prefix) {
+            if (str_starts_with($ip, $prefix)) {
+                return false;
+            }
+        }
+
        return true;
    }

Source: GitHub Commit

Detection Methods for CVE-2026-27129

Indicators of Compromise

  • GraphQL requests containing Asset mutations with external URLs pointing to IPv6-only hostnames
  • Outbound connections from the Craft CMS server to internal IPv6 addresses (especially cloud metadata endpoints like fd00:ec2::254)
  • Unusual asset creation or modification activity in GraphQL logs referencing internal network resources

Detection Strategies

  • Monitor GraphQL query logs for Asset mutation operations with suspicious URL parameters containing IPv6 addresses or uncommon hostnames
  • Implement network monitoring to detect outbound connections from web servers to internal IPv6 ranges (link-local, loopback, and cloud provider metadata prefixes)
  • Review access logs for patterns of GraphQL requests attempting to access internal services through the Asset mutation endpoint

Monitoring Recommendations

  • Enable detailed logging for all GraphQL mutations, particularly those involving asset operations with external URLs
  • Configure alerts for outbound connections from the CMS to IPv6 metadata endpoints such as fd00:ec2::, fd20:ce::, and ::1
  • Audit GraphQL schema permissions regularly to ensure write permissions are not inadvertently exposed to unauthorized users or the public schema

How to Mitigate CVE-2026-27129

Immediate Actions Required

  • Upgrade Craft CMS to version 4.16.19 or 5.8.23 immediately to apply the security patch
  • Review GraphQL schema permissions and remove unnecessary write access for Asset mutations
  • Audit the Public Schema configuration to ensure write permissions are disabled unless explicitly required
  • Implement network-level restrictions preventing the web server from initiating connections to internal IPv6 ranges

Patch Information

Craft CMS has released patched versions that address this SSRF bypass vulnerability. The fix adds explicit validation for IPv6 address prefixes associated with sensitive internal services, including AWS IMDS, GCP metadata, loopback, link-local, and IPv4-mapped IPv6 addresses.

  • Craft CMS 4.x: Upgrade to version 4.16.19 or later
  • Craft CMS 5.x: Upgrade to version 5.8.23 or later

For additional details, refer to the GitHub Security Advisory GHSA-v2gc-rm6g-wrw9 and the related advisory for the original CVE-2025-68437 fix at GHSA-x27p-wfqw-hfcc.

Workarounds

  • Disable GraphQL Asset mutations entirely if not required for your application
  • Restrict GraphQL schema access to trusted administrative users only
  • Configure network-level firewall rules to block outbound connections from the CMS server to internal IPv6 address ranges
bash
# Example: Block outbound IPv6 to cloud metadata and internal ranges using ip6tables
ip6tables -A OUTPUT -d fd00:ec2::/32 -j DROP
ip6tables -A OUTPUT -d fd20:ce::/32 -j DROP
ip6tables -A OUTPUT -d ::1/128 -j DROP
ip6tables -A OUTPUT -d fe80::/10 -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/TechCraft Cms

  • SeverityMEDIUM

  • CVSS Score5.7

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P/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 Commit Update

  • GitHub Security Advisory GHSA-v2gc-rm6g-wrw9

  • GitHub Security Advisory GHSA-x27p-wfqw-hfcc
  • Related CVEs
  • CVE-2026-33162: Craft CMS Auth Bypass Vulnerability

  • CVE-2026-33161: Craft CMS Information Disclosure Flaw

  • CVE-2026-33158: Craft CMS Information Disclosure Flaw

  • CVE-2026-33157: Craftcms Craft CMS RCE 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