A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-47070

CVE-2026-47070: Benoitc Hackney Information Disclosure Bug

CVE-2026-47070 is an information disclosure vulnerability in Benoitc Hackney that exposes sensitive credentials during HTTP/3 redirects to different origins. This article covers technical details, affected versions, impact, and mitigation.

Published: May 28, 2026

CVE-2026-47070 Overview

CVE-2026-47070 is a sensitive data exposure vulnerability in benoitc/hackney, an HTTP client library for Erlang. The HTTP/3 redirect handler in src/hackney_h3.erl forwards original request headers unchanged to redirect targets without performing a cross-origin check. When a client issues an HTTP/3 request with follow_redirect enabled and includes Authorization or Cookie headers, a 3xx redirect to a different host causes those credentials to be forwarded verbatim to the new origin. The flaw affects hackney versions from 3.1.1 before 4.0.1 and is classified under [CWE-601] (URL Redirection to Untrusted Site).

Critical Impact

Attackers controlling a redirect target can harvest authentication credentials and session cookies from HTTP/3 clients using follow_redirect, enabling account takeover and session hijacking.

Affected Products

  • benoitc hackney 3.1.1 through 4.0.0
  • Erlang applications depending on hackney for HTTP/3 client functionality
  • Downstream libraries that wrap hackney with follow_redirect enabled

Discovery Timeline

  • 2026-05-25 - CVE-2026-47070 published to NVD
  • 2026-05-27 - Last updated in NVD database

Technical Details for CVE-2026-47070

Vulnerability Analysis

The vulnerability stems from a missing security control in the HTTP/3 redirect path of hackney. The main hackney.erl module implements maybe_strip_auth_on_redirect/2, guarded by the location_trusted option. This function was introduced to remediate CVE-2018-1000007 by stripping sensitive headers when redirects cross origin boundaries. The HTTP/3 handler in src/hackney_h3.erl does not call this routine and does not perform any equivalent cross-origin check.

As a result, an HTTP/3 request issued with follow_redirect enabled treats every redirect target as trusted. The client transmits the original Authorization header, bearer tokens, and Cookie values to whatever host the upstream server names in its 3xx Location response. An attacker who controls or compromises a redirecting endpoint can capture these credentials.

Root Cause

The HTTP/3 code path was implemented without parity with the HTTP/1.x and HTTP/2 redirect logic. Specifically, hackney_h3.erl lacks the cross-origin credential stripping that hackney.erl applies through maybe_strip_auth_on_redirect/2. This is a security regression introduced when HTTP/3 support was added in version 3.1.1.

Attack Vector

Exploitation requires a target application to issue an HTTP/3 request through hackney with follow_redirect set to true while attaching credentials. The attacker must either control a server that the client contacts, compromise a legitimate server, or perform a man-in-the-middle attack capable of injecting a 3xx response. Upon receiving the redirect, the hackney client connects to the attacker-specified host and replays the original Authorization and Cookie headers, exposing them to the attacker. The fix is implemented in commit c58d5b50bade146360b85caf3dc8065807b08246.

Detection Methods for CVE-2026-47070

Indicators of Compromise

  • Outbound HTTP/3 (QUIC over UDP/443) connections from application servers to unexpected external hosts following a 3xx response
  • Authentication tokens or session cookies appearing in server access logs of untrusted third-party domains
  • Unexpected authentication events originating from third-party IP ranges shortly after legitimate API calls

Detection Strategies

  • Inventory Erlang and Elixir applications and identify dependencies on hackney versions between 3.1.1 and 4.0.0 using rebar3 tree or mix deps
  • Inspect application code for usage of follow_redirect together with HTTP/3 transport and Authorization or Cookie headers
  • Monitor egress proxy logs for HTTP/3 redirects that cross origin boundaries from hosts running affected applications

Monitoring Recommendations

  • Alert on credential reuse from non-corporate IP addresses immediately after outbound HTTP/3 traffic from application hosts
  • Capture and review QUIC connection metadata at the network perimeter to flag redirect chains terminating at untrusted domains
  • Correlate Software Composition Analysis (SCA) findings for vulnerable hackney versions against runtime telemetry from application servers

How to Mitigate CVE-2026-47070

Immediate Actions Required

  • Upgrade hackney to version 4.0.1 or later in all Erlang and Elixir projects
  • Audit all call sites that combine follow_redirect => true with credentialed HTTP/3 requests and disable automatic redirect following until patched
  • Rotate any bearer tokens, API keys, or session cookies that may have transited HTTP/3 redirects on affected versions

Patch Information

The fix is available in hackney 4.0.1. The remediation commit adds cross-origin credential stripping to the HTTP/3 redirect handler, bringing hackney_h3.erl to parity with hackney.erl. Review the GitHub Security Advisory GHSA-h73q-4w9q-82h4, the CNA advisory from the Erlang Ecosystem Foundation, and the upstream patch commit for full technical context.

Workarounds

  • Disable follow_redirect for any HTTP/3 request that carries Authorization or Cookie headers and handle 3xx responses manually with explicit origin checks
  • Avoid the HTTP/3 transport in hackney until the upgrade is deployed, falling back to HTTP/1.1 or HTTP/2 which apply the existing maybe_strip_auth_on_redirect/2 protection
  • Restrict outbound egress from application hosts so HTTP/3 redirects cannot reach attacker-controlled destinations
bash
# Configuration example: pin hackney to a patched version in rebar.config
{deps, [
    {hackney, "4.0.1"}
]}.

# Or in mix.exs for Elixir projects
defp deps do
  [
    {:hackney, "~> 4.0.1"}
  ]
end

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechHackney

  • SeverityMEDIUM

  • CVSS Score6.0

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:P/VC:H/VI:N/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-601
  • Vendor Resources
  • CNA CVE-2026-47070

  • GitHub Commit Changes

  • GitHub Security Advisory GHSA-h73q-4w9q-82h4

  • OSV Vulnerability EEF-CVE-2026-47070
  • Related CVEs
  • CVE-2026-47066: Benoitc Hackney DOS Vulnerability

  • CVE-2026-47077: Benoitc Hackney DoS Vulnerability

  • CVE-2026-47069: Benoitc Hackney CRLF Injection Vulnerability

  • CVE-2026-47072: Hackney CRLF Injection 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