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

CVE-2026-43929: ssrfcheck Library SSRF Bypass Vulnerability

CVE-2026-43929 is an SSRF bypass vulnerability in the ssrfcheck library that allows attackers to exploit IPv4-mapped IPv6 addresses. This post covers technical details, affected versions, impact, and mitigation steps.

Published: May 17, 2026

CVE-2026-43929 Overview

CVE-2026-43929 is a Server-Side Request Forgery (SSRF) protection bypass in the ssrfcheck Node.js library versions 1.3.0 and earlier. The library's isSSRFSafeURL() function fails to block requests targeting private IP addresses when those addresses are encoded as IPv4-mapped IPv6 addresses, such as http://[::ffff:127.0.0.1]/. The WHATWG URL parser in Node.js normalizes the bracketed IPv4 notation to compressed hexadecimal form before the library's regex evaluates it. Because the regex only matches dot-notation, every IANA private IPv4 range is bypassed, including cloud metadata endpoints like 169.254.169.254.

Critical Impact

Applications relying on ssrfcheck to validate user-supplied URLs are fully exposed to SSRF attacks against internal services and cloud metadata endpoints (AWS, GCP, Azure).

Affected Products

  • ssrfcheck npm library, versions 1.3.0 and earlier
  • Node.js applications using isSSRFSafeURL() for URL validation
  • Cloud-hosted services exposing user-driven HTTP fetch functionality protected by ssrfcheck

Discovery Timeline

  • 2026-05-12 - CVE-2026-43929 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-43929

Vulnerability Analysis

The ssrfcheck library implements private IP filtering via regular expressions that match dotted-decimal IPv4 notation. When an attacker submits a URL containing an IPv4-mapped IPv6 address inside brackets, the Node.js WHATWG URL parser normalizes the host component. The dotted form ::ffff:127.0.0.1 becomes the compressed hexadecimal form ::ffff:7f00:1 before the library performs its private-range check.

The regex was never designed to inspect hex-formatted IPv6 octets. As a result, the check returns a safe verdict for any address routed through this notation. Attackers can target all seven IANA-reserved IPv4 ranges, including 10.0.0.0/8, 127.0.0.0/8, 192.168.0.0/16, and the link-local 169.254.0.0/16 block that hosts cloud instance metadata services.

This is categorized as Incorrect Behavior Order: Validate Before Canonicalize [CWE-184]. The vulnerability is a Server-Side Request Forgery (SSRF) protection bypass.

Root Cause

The root cause is a mismatch between the input format the regex expects and the canonicalized output produced by the URL parser. The library validates host strings after the parser has already transformed them, but its patterns assume the original dot-notation representation. The check never matches valid input and silently allows the request to proceed.

Attack Vector

An attacker supplies a URL such as http://[::ffff:169.254.169.254]/latest/meta-data/ to an application endpoint that forwards user-controlled URLs through isSSRFSafeURL(). The library returns true, the application issues the HTTP request, and the response, often containing IAM credentials or other internal data, is returned to the attacker. No authentication or user interaction is required.

// Example exploitation payloads (sanitized)
// Targeting AWS/GCP/Azure metadata service:
http://[::ffff:169.254.169.254]/latest/meta-data/iam/security-credentials/

// Targeting localhost services:
http://[::ffff:127.0.0.1]:8080/admin

// Targeting internal RFC1918 ranges:
http://[::ffff:10.0.0.1]/
http://[::ffff:192.168.1.1]/

Detection Methods for CVE-2026-43929

Indicators of Compromise

  • Outbound HTTP requests from application servers to 169.254.169.254, 127.0.0.1, or RFC1918 ranges originating from URL-fetch handlers
  • Application logs showing bracketed IPv6 hosts containing ::ffff: prefixes in user-supplied URL parameters
  • Unexpected access to cloud instance metadata endpoints from workloads that do not normally query them

Detection Strategies

  • Inspect web application logs and WAF telemetry for URL parameters containing [::ffff: or other IPv6 bracket notation
  • Audit Node.js dependency manifests (package.json, package-lock.json) for ssrfcheck versions at or below 1.3.0
  • Correlate user-driven URL submissions with outbound DNS or HTTP traffic to private address space

Monitoring Recommendations

  • Alert on any process-level egress connections to 169.254.169.254 from production application workloads
  • Monitor cloud audit logs (AWS CloudTrail, GCP Audit Logs, Azure Activity Logs) for unexpected metadata service access patterns
  • Track HTTP client libraries within Node.js processes for requests resolving to private IP space

How to Mitigate CVE-2026-43929

Immediate Actions Required

  • Upgrade ssrfcheck to a patched release above 1.3.0 once available, per the GitHub Security Advisory
  • Apply IMDSv2 enforcement on AWS EC2 instances to require session tokens for metadata access
  • Audit application code paths that pass user-controlled URLs to outbound HTTP clients

Patch Information

Refer to the GitHub Security Advisory GHSA-j4rj-2jr5-m439 for vendor remediation guidance. Until a fixed version is installed, treat isSSRFSafeURL() as ineffective against IPv6-encoded payloads.

Workarounds

  • Resolve the hostname to an IP address yourself, then validate the resolved address against private ranges using a library that handles IPv6 and IPv4-mapped notation
  • Block outbound traffic from application servers to 169.254.0.0/16, 127.0.0.0/8, and RFC1918 ranges at the network or security group layer
  • Reject any URL whose host begins with [ (IPv6 literal) before passing it to ssrfcheck, unless your application explicitly requires IPv6 destinations
bash
# Example egress restriction using iptables to block metadata access
iptables -A OUTPUT -d 169.254.169.254 -j REJECT
iptables -A OUTPUT -d 127.0.0.0/8 ! -o lo -j REJECT
iptables -A OUTPUT -d 10.0.0.0/8 -j REJECT
iptables -A OUTPUT -d 192.168.0.0/16 -j REJECT

# AWS IMDSv2 enforcement
aws ec2 modify-instance-metadata-options \
    --instance-id i-xxxxxxxx \
    --http-tokens required \
    --http-endpoint enabled

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechSsrfcheck

  • SeverityHIGH

  • CVSS Score8.2

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-184
  • Technical References
  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-2586: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-2587: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-45255: FreeBSD bsdinstall/bsdconfig RCE Flaw
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