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

CVE-2026-43969: Cowlib Auth Bypass Vulnerability

CVE-2026-43969 is an authentication bypass flaw in cowlib that allows HTTP request splitting and cookie smuggling through CRLF injection. This article covers the technical details, affected versions, and mitigation steps.

Published: May 18, 2026

CVE-2026-43969 Overview

CVE-2026-43969 is a Carriage Return Line Feed (CRLF) injection vulnerability in ninenines cowlib, an HTTP support library used by the Erlang Cowboy web server ecosystem. The cow_cookie:cookie/1 encoder builds a client-side Cookie: request header from name-value pairs without validating either field. Attackers who control cookie names or values can inject ;, ,, CR, LF, or TAB characters into the serialized header. The flaw enables cookie smuggling within a single header and HTTP request header splitting against shared upstream proxies. The issue affects cowlib from version 2.9.0.

Critical Impact

Unvalidated cookie name and value fields allow attackers to inject phantom cookies or smuggle complete secondary HTTP requests through shared proxies.

Affected Products

  • ninenines cowlib versions starting at 2.9.0
  • Erlang/OTP applications using cow_cookie:cookie/1 for client-side cookie serialization
  • Cowboy-based HTTP clients and proxies that depend on cowlib for header construction

Discovery Timeline

  • 2026-05-11 - CVE-2026-43969 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-43969

Vulnerability Analysis

The vulnerability resides in the cow_cookie:cookie/1 function inside cowlib. The function concatenates supplied cookie names and values directly into a Cookie: request header without rejecting separator or control characters. An attacker who influences either field can inject characters that change the semantic structure of the header. Two attack classes follow from this primitive. First, injecting a sequence such as ; admin=1 introduces a phantom cookie that the receiving server parses as authentic. Second, injecting \r\n appends arbitrary headers or smuggles a complete second HTTP request through any shared upstream proxy. The vulnerability is classified under CWE-93: Improper Neutralization of CRLF Sequences.

Root Cause

The encoder lacks input validation on cookie name and value fields. The matching decoder functions parse_cookie_name/1 and parse_cookie_value/1, along with the server-side setcookie/3 encoder, already validate and reject the same characters. Only the client-side cookie/1 encoder is missing the check, creating an asymmetry between encode and decode paths.

Attack Vector

Exploitation requires that an attacker control cookie names or values passed into cow_cookie:cookie/1. Applications that forward user-supplied identifiers, session tokens, or tracking values into outbound HTTP requests through cowlib are the primary exposure. The injected payload travels with the outbound request and is interpreted either by the destination server (cookie smuggling) or by an intermediate proxy (request splitting and smuggling). See the Erlef CNA advisory for the upstream description and the GitHub commit for the fix.

Detection Methods for CVE-2026-43969

Indicators of Compromise

  • Outbound HTTP requests containing CR (\r), LF (\n), or TAB characters within Cookie: header values
  • Cookie: headers containing unexpected ; or , separators introduced by attacker-controlled fields
  • Upstream proxy logs showing desynchronization, duplicate request boundaries, or unexpected secondary requests originating from a single client connection

Detection Strategies

  • Inventory Erlang applications and identify dependencies on cowlib 2.9.0 or later, including transitive dependencies pulled through Cowboy or Gun
  • Inspect call sites of cow_cookie:cookie/1 and confirm whether attacker-influenced data reaches the cookie name or value arguments
  • Deploy egress inspection that flags HTTP request headers containing raw CRLF or control characters in cookie fields

Monitoring Recommendations

  • Log and alert on cookie field anomalies such as embedded separators or non-printable bytes in outbound traffic
  • Monitor reverse proxy and CDN telemetry for HTTP request smuggling indicators, including mismatched Content-Length values and unexpected pipelined requests
  • Track dependency manifests (rebar.config, mix.exs) for upgrades to the patched cowlib release

How to Mitigate CVE-2026-43969

Immediate Actions Required

  • Upgrade cowlib to the patched version that includes commit 177953dd51540da11090666c1f007214127a1144
  • Audit application code for any caller passing attacker-controlled data into cow_cookie:cookie/1 and add input validation at those boundaries
  • Validate cookie names and values against an allowlist that excludes ;, ,, CR, LF, and TAB before serialization

Patch Information

The upstream fix is published in the cowlib repository under commit 177953dd51540da11090666c1f007214127a1144. The patch adds validation to the encoder path so that cow_cookie:cookie/1 rejects the same characters already rejected by parse_cookie_name/1, parse_cookie_value/1, and setcookie/3. Additional metadata is available through the OSV entry EEF-CVE-2026-43969.

Workarounds

  • Wrap calls to cow_cookie:cookie/1 with a validation function that strips or rejects CR, LF, TAB, ;, and , from names and values
  • Constrain upstream input sources so cookie fields cannot contain raw user input until the library is upgraded
  • Terminate HTTP connections to shared upstream proxies after each request to limit request smuggling exposure
bash
# Update cowlib in a rebar3 project after patching
rebar3 upgrade cowlib
rebar3 deps
# Or in a mix project
mix deps.update cowlib

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechCowlib

  • SeverityLOW

  • CVSS Score2.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:P/PR:N/UI:N/VC:N/VI:L/VA:N/SC:N/SI:L/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-93
  • Technical References
  • Erlef CNA CVE-2026-43969

  • GitHub Commit Change

  • OSV Vulnerability EEF-CVE-2026-43969
  • Related CVEs
  • CVE-2026-43970: Cowlib SPDY DoS Vulnerability

  • CVE-2026-43968: cowlib CRLF Injection XSS Vulnerability

  • CVE-2026-7790: Cowlib HTTP Parser 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