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

CVE-2026-6322: fast-uri SSRF Vulnerability

CVE-2026-6322 is an SSRF flaw in fast-uri that allows attackers to bypass host allowlist checks through encoded authority delimiters. This article covers the technical details, affected versions, and mitigation steps.

Published: May 7, 2026

CVE-2026-6322 Overview

CVE-2026-6322 is a URL parsing vulnerability in the fast-uri Node.js library, maintained under the Fastify project at the OpenJS Foundation. The normalize() function decodes percent-encoded authority delimiters inside the host component and re-emits them as raw delimiters during serialization. An attacker can craft a host that combines an allowed domain, an encoded at-sign (%40), and a different domain. After normalization, the at-sign becomes a raw userinfo separator, shifting the URI authority to the second domain. Versions <= 3.1.1 are affected, and the issue is fixed in 3.1.2. The flaw is classified under [CWE-436] Interpretation Conflict.

Critical Impact

Applications that normalize untrusted URLs before host allowlist checks, redirect validation, or outbound request routing can be steered to a different authority than the input appears to specify, enabling Server-Side Request Forgery (SSRF) and open-redirect attacks.

Affected Products

  • fast-uri versions <= 3.1.1
  • Fastify applications and plugins that depend on fast-uri for URL normalization
  • Downstream Node.js services using fast-uri for host allowlist or redirect validation

Discovery Timeline

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

Technical Details for CVE-2026-6322

Vulnerability Analysis

The fast-uri library exposes a normalize() function used to canonicalize URI strings before downstream validation. The function applies percent-decoding to characters inside the host component without re-checking whether the decoded characters carry structural meaning in the authority grammar defined by RFC 3986. When the decoded byte is the at-sign (@), it acts as a separator between userinfo and host. The serializer then writes the decoded character back as a raw delimiter, producing a URI whose host differs from the host present in the input string.

A validator that parses the original input, confirms the host matches an allowlist, and then passes the normalized URI to an HTTP client will route the request to an attacker-controlled host. The library itself does not execute the request, but the parser/serializer mismatch corrupts every consumer that trusts the normalized output.

Root Cause

The root cause is an interpretation conflict between the parser and the serializer. The parser treats %40 inside the host as data, but the serializer treats the decoded @ as a structural delimiter. Authority-significant characters must remain percent-encoded after normalization or be rejected outright. The fix in 3.1.2 preserves the encoding so that the host segment cannot be reinterpreted as userinfo@host.

Attack Vector

An attacker submits a URL such as https://allowed.example.com%40attacker.example/path to an application that calls fastUri.normalize() before performing a host check or initiating an outbound request. The pre-normalization host appears to begin with allowed.example.com, satisfying naive allowlist logic. After normalization, the URI authority becomes attacker.example, and the request, redirect, or webhook is delivered to the attacker. The attack requires no authentication, no user interaction, and is delivered over the network.

No verified public proof-of-concept code is available. Refer to GitHub Security Advisory GHSA-v39h-62p7-jpjc for the maintainer's technical write-up.

Detection Methods for CVE-2026-6322

Indicators of Compromise

  • Outbound HTTP requests to unexpected hosts originating from services that proxy, fetch, or validate user-supplied URLs.
  • Application logs containing input URLs with %40 or other percent-encoded reserved characters (%23, %2F, %3F) inside the host segment.
  • Redirect responses where the Location header host does not match the host that passed allowlist validation.

Detection Strategies

  • Inventory package-lock.json and yarn.lock files across repositories and build artifacts for fast-uri versions <= 3.1.1, including transitive dependencies pulled in by Fastify plugins.
  • Add a runtime assertion that compares the host extracted before and after normalize() and alerts when the values differ.
  • Apply web application firewall (WAF) rules that block inbound URLs containing percent-encoded @, /, ?, or # inside the host portion of any user-controlled URL parameter.

Monitoring Recommendations

  • Forward outbound HTTP egress logs from URL-fetching services into a SIEM and correlate destination hosts against the application's documented allowlist.
  • Monitor Software Composition Analysis (SCA) findings for GHSA-v39h-62p7-jpjc and track remediation across all repositories.
  • Alert on Node.js process telemetry that shows new outbound connections to domains never observed in baseline traffic.

How to Mitigate CVE-2026-6322

Immediate Actions Required

  • Upgrade fast-uri to version 3.1.2 or later in every direct and transitive dependency path.
  • Rebuild and redeploy all Node.js services, container images, and serverless bundles that ship fast-uri.
  • Audit code paths that call normalize() followed by host allowlist checks, redirect validation, or outbound request routing.

Patch Information

The maintainers released fast-uri3.1.2, which preserves percent-encoded authority delimiters during normalization. Details are documented in GitHub Security Advisory GHSA-v39h-62p7-jpjc and the OpenJS Foundation Security Advisories. Update the dependency entry in package.json and run npm audit fix or yarn upgrade fast-uri to pull the corrected release.

Workarounds

  • Reject input URLs whose host segment contains any percent-encoded character before passing them to normalize().
  • Perform host allowlist checks against the URL parsed by the WHATWG URL constructor rather than against fast-uri output.
  • Resolve the final destination host after normalization and re-validate it against the allowlist immediately before issuing the outbound request.
bash
# Configuration example
npm install fast-uri@^3.1.2
npm ls fast-uri
npm audit --audit-level=high

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechFast Uri

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-436
  • Technical References
  • OpenJS Foundation Security Advisories

  • GitHub Security Advisory GHSA-v39h-62p7-jpjc
  • Related CVEs
  • CVE-2026-6321: fast-uri Path Traversal 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