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

CVE-2026-44232: DSSRF Node.js Library SSRF Vulnerability

CVE-2026-44232 is an SSRF flaw in DSSRF Node.js library where IPv6 addresses bypass is_url_safe checks. This vulnerability affects versions prior to 1.3.0. This article covers technical details, impact, and mitigation.

Published: May 17, 2026

CVE-2026-44232 Overview

CVE-2026-44232 is a Server-Side Request Forgery (SSRF) defense bypass in DSSRF, a Node.js library that provides utilities and SSRF protection checks. Versions prior to 1.3.0 fail to validate IPv6 addresses correctly. Every IPv6 address category bypasses the is_url_safe validation function. Attackers can submit IPv6-formatted URLs to evade the library's defenses and reach internal network resources. The maintainers fixed the issue in version 1.3.0. The vulnerability is tracked under [CWE-791] (Incomplete Filtering of Special Elements).

Critical Impact

Applications relying on DSSRF for SSRF protection can be tricked into issuing requests to internal IPv6 endpoints, exposing metadata services, internal APIs, and other restricted resources.

Affected Products

  • DSSRF (dssrf-js) Node.js library, all versions prior to 1.3.0
  • Node.js applications using DSSRF's is_url_safe for SSRF defense
  • Downstream services that rely on DSSRF allowlist validation before making outbound HTTP requests

Discovery Timeline

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

Technical Details for CVE-2026-44232

Vulnerability Analysis

DSSRF exposes the is_url_safe function to determine whether a user-supplied URL is safe to fetch. The function inspects the destination host and rejects requests targeting private, loopback, link-local, and other reserved address ranges. In versions before 1.3.0, the validation logic only enforces these checks against IPv4 addresses. IPv6 addresses pass through is_url_safe regardless of their category, including loopback (::1), unique local (fc00::/7), link-local (fe80::/10), and IPv4-mapped IPv6 addresses such as ::ffff:127.0.0.1.

An attacker who controls a URL passed to a DSSRF-protected fetcher can supply an IPv6 literal pointing to an internal resource. The library returns a safe verdict, and the application proceeds to issue the request. This grants the attacker reach into internal networks, cloud instance metadata services exposed over IPv6, and services bound to IPv6 loopback. The flaw compromises integrity by enabling unintended outbound requests under the application's identity.

Root Cause

The root cause is incomplete filtering of special elements [CWE-791]. The address category checks operate on IPv4 representations only. The IPv6 parsing path either returns a default-safe verdict or skips the reserved-range comparison entirely.

Attack Vector

Exploitation requires only network access to an application endpoint that forwards user-controlled URLs into is_url_safe. The attacker submits a URL with an IPv6 host literal such as http://[::1]:8080/admin or http://[::ffff:169.254.169.254]/latest/meta-data/. DSSRF validates the URL as safe, and the host application issues the request to the internal target. No authentication or user interaction is required.

No public exploit code is published. The mechanism is described in the GitHub Security Advisory.

Detection Methods for CVE-2026-44232

Indicators of Compromise

  • Outbound HTTP requests from application servers to IPv6 loopback (::1), link-local (fe80::/10), or unique-local (fc00::/7) addresses
  • Application logs showing user-supplied URLs containing bracketed IPv6 literals or ::ffff: IPv4-mapped notation
  • Unexpected access attempts to cloud metadata endpoints reached over IPv6

Detection Strategies

  • Inventory package.json and package-lock.json files across Node.js services for dssrf entries with versions below 1.3.0
  • Inspect web application firewall and proxy logs for inbound requests carrying IPv6 URL parameters destined for fetcher endpoints
  • Correlate outbound connection telemetry with the originating user request to identify SSRF chains

Monitoring Recommendations

  • Alert on any application-initiated connection to IPv6 reserved ranges that should be unreachable from production workloads
  • Track DNS resolutions returning AAAA records that map to internal address space
  • Monitor cloud metadata service access patterns for unexpected callers

How to Mitigate CVE-2026-44232

Immediate Actions Required

  • Upgrade DSSRF to version 1.3.0 or later across all Node.js services
  • Audit all call sites of is_url_safe to confirm the upgrade is in effect at runtime
  • Restrict outbound network access from application servers to required destinations only using egress firewall rules

Patch Information

The maintainers fixed the IPv6 bypass in DSSRF 1.3.0. Update the dependency in package.json to ^1.3.0 and reinstall. Review the GitHub Security Advisory GHSA-8p33-q827-ghj5 for release notes and remediation guidance.

Workarounds

  • Reject any user-supplied URL containing a bracketed IPv6 literal before invoking is_url_safe until the patch is deployed
  • Disable IPv6 on application egress interfaces where IPv6 connectivity is not required
  • Enforce an allowlist of approved outbound destinations at the network layer instead of relying solely on application-level validation
bash
# Configuration example
npm install dssrf@^1.3.0
npm ls dssrf

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechNode Js

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/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-791
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2024-22020: Node.js Network Import Bypass RCE Flaw

  • CVE-2026-21715: Node.js Privilege Escalation Vulnerability

  • CVE-2026-21717: Node.js V8 Hash Collision DoS Vulnerability

  • CVE-2025-55130: Node.js 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