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

CVE-2026-47075: Hackney HTTP Request Splitting Vulnerability

CVE-2026-47075 is an HTTP request splitting flaw in hackney caused by improper CRLF neutralization. Attackers can inject arbitrary headers or split requests. This article covers technical details, affected versions, and mitigation.

Published: May 28, 2026

CVE-2026-47075 Overview

CVE-2026-47075 is an HTTP Request Splitting vulnerability in hackney, the Erlang HTTP client maintained by benoitc. The library fails to percent-encode carriage return (\r) and line feed (\n) characters in the URL query component before constructing the HTTP/1.1 request target. An attacker who controls all or part of a URL passed to hackney can inject raw CRLF sequences into the query string. Those bytes are emitted as HTTP line breaks in the request line, enabling injection of arbitrary headers or splitting of the HTTP request. The flaw is tracked as [CWE-93] (Improper Neutralization of CRLF Sequences) and affects hackney versions prior to 4.0.1.

Critical Impact

Attacker-controlled URL inputs can inject arbitrary HTTP headers or split outbound requests, enabling cache poisoning, header smuggling, and SSRF-adjacent attacks against backend services.

Affected Products

  • benoitc hackney versions from 0 before 4.0.1
  • Erlang/Elixir applications using hackney as their HTTP client
  • Downstream libraries depending on hackney for outbound HTTP (for example, HTTPoison)

Discovery Timeline

  • 2026-05-25 - CVE-2026-47075 published to NVD
  • 2026-05-26 - Last updated in NVD database

Technical Details for CVE-2026-47075

Vulnerability Analysis

The vulnerability resides in hackney_url:make_url/3, which assembles the request target from a base URL, path, and query binary. The function passes the query binary directly into the HTTP request line without validating or escaping characters outside the grammar defined in RFC 3986 Section 3.4. RFC 3986 requires characters outside the reserved and unreserved sets to be percent-encoded. Because hackney performs no such encoding, raw \r, \n, and NUL bytes survive into the wire format of the HTTP/1.1 request line and the HTTP/2 and HTTP/3 :path pseudo-header. The result is classic HTTP Request Splitting: an attacker who supplies a malicious query string causes the client to emit a second header line, additional headers, or even a smuggled second request to the origin server.

Root Cause

The root cause is missing input neutralization on the query component before request line construction. hackney_url:make_url/3 concatenates the query binary as-is, trusting callers to pre-encode the content. Any application that forwards untrusted input into a hackney URL inherits this lack of validation.

Attack Vector

An attacker supplies a crafted URL or query parameter to an application that calls hackney. The attacker embeds CRLF bytes inside the query string. When hackney builds the outbound request, the injected bytes terminate the request line and introduce attacker-controlled headers. Depending on the upstream server, this enables cache poisoning, authentication header overrides, internal endpoint targeting, or request smuggling against shared HTTP infrastructure.

erlang
-spec request(pid(), binary(), binary(), list(), binary() | iolist(), timeout(), list()) ->
    {ok, integer(), list()} | {ok, integer(), list(), binary()} | {error, term()}.
request(Pid, Method, Path, Headers, Body, Timeout, ReqOpts) ->
    case valid_request_target(Path) of
        ok -> gen_statem:call(Pid, {request, Method, Path, Headers, Body, ReqOpts}, Timeout);
        Err -> Err
    end.

%% @private GHSA-j9wq: the request target (path + query) is written verbatim
%% into the HTTP/1.1 request line and the HTTP/2 / HTTP/3 :path pseudo-header.
%% Raw CR, LF or NUL bytes let a caller-controlled URL inject extra header
%% lines or split the request. RFC 3986 requires those bytes to be
%% percent-encoded; reject them rather than emit a malformed request.
valid_request_target(Path) when is_binary(Path) ->
    case binary:match(Path, [<<"\r">>, <<"\n">>, <<0>>]) of
        nomatch -> ok;
        _ -> {error, {invalid_request_target, Path}}
    end;
valid_request_target(Path) when is_list(Path) ->
    valid_request_target(iolist_to_binary(Path));
valid_request_target(_) ->
    ok.

Source: GitHub Hackney Commit ca73dd0. The patch in src/hackney_conn.erl adds a valid_request_target/1 guard that rejects \r, \n, and NUL bytes in the request target before dispatch.

Detection Methods for CVE-2026-47075

Indicators of Compromise

  • Outbound HTTP requests from Erlang or Elixir application servers containing literal %0D%0A, raw \r\n, or unexpected header lines in the request target.
  • Backend or proxy logs showing duplicate Host, Content-Length, or Transfer-Encoding headers correlated with a single client request.
  • Application logs recording user-supplied URL parameters containing CR, LF, or NUL bytes prior to a hackney:request/5 or :hackney.request/5 call.

Detection Strategies

  • Inventory Erlang and Elixir builds for hackney versions earlier than 4.0.1 via rebar3 tree, mix deps, or SBOM scans.
  • Add static analysis rules flagging code paths that pass untrusted strings into hackney_url:make_url/3, hackney:request/5, or HTTPoison wrappers without validation.
  • Inspect egress proxy or service mesh logs for request lines containing CR or LF byte sequences originating from application tiers.

Monitoring Recommendations

  • Enable structured logging of outbound HTTP request targets and alert on non-ASCII or control-character bytes.
  • Monitor for anomalous duplicate-header patterns at intermediate proxies, load balancers, and CDNs.
  • Track dependency drift in CI to surface any rollback to hackney versions below 4.0.1.

How to Mitigate CVE-2026-47075

Immediate Actions Required

  • Upgrade hackney to version 4.0.1 or later across all Erlang and Elixir services.
  • Identify and patch transitive consumers such as HTTPoison that pin older hackney releases.
  • Audit application code that forwards user-controlled input into URL paths or query strings handled by hackney.
  • Add input validation to reject CR, LF, and NUL bytes in any URL component before invoking the HTTP client.

Patch Information

The fix is delivered in commit ca73dd0aba0ed557449c18288bf07241671a43c9 and shipped in hackney4.0.1. The patch introduces valid_request_target/1 in src/hackney_conn.erl, which rejects request targets containing \r, \n, or NUL and returns {error, {invalid_request_target, Path}}. Full details are in GitHub Security Advisory GHSA-j9wq-vxxc-94wf and the CNA CVE-2026-47075 Record.

Workarounds

  • Percent-encode URL query strings using hackney_url:urlencode/1 or equivalent before passing values to hackney.
  • Wrap calls to hackney:request/5 with a guard that rejects binaries containing \r, \n, or NUL bytes.
  • Restrict outbound HTTP from application tiers through an egress proxy that normalizes or drops requests containing control characters in the request target.
bash
# Pin the patched version in rebar.config
{deps, [
    {hackney, "4.0.1"}
]}.

# Or in mix.exs for Elixir projects
# {:hackney, "~> 4.0.1"}

# Then refresh dependencies
rebar3 upgrade hackney
# mix deps.update hackney

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechHackney

  • SeverityMEDIUM

  • CVSS Score6.8

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:P/PR:N/UI:A/VC:N/VI:H/VA:N/SC:N/SI:H/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
  • IntegrityHigh
  • AvailabilityNone
  • CWE References
  • CWE-93
  • Technical References
  • CNA CVE-2026-47075 Record

  • GitHub Hackney Commit

  • GitHub Security Advisory GHSA-j9wq-vxxc-94wf

  • OSV Vulnerability EEF-CVE-2026-47075
  • Related CVEs
  • CVE-2026-47069: Benoitc Hackney CRLF Injection Vulnerability

  • CVE-2026-47072: Hackney CRLF Injection Vulnerability

  • CVE-2026-47070: Benoitc Hackney Information Disclosure Bug

  • CVE-2026-47066: Benoitc Hackney DOS 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