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

CVE-2026-38967: CrowCpp Crow Header Injection Vulnerability

CVE-2026-38967 is a response header injection vulnerability in CrowCpp Crow through v1.3.1 caused by unvalidated response header values. This article covers technical details, affected versions, impact, and mitigation.

Published: June 4, 2026

CVE-2026-38967 Overview

CVE-2026-38967 is an HTTP response header injection vulnerability affecting CrowCpp Crow through version 1.3.1. The framework fails to validate response header values before writing them to HTTP responses. Attackers can inject Carriage Return Line Feed (CRLF) sequences into header values to manipulate the response stream. This weakness maps to CWE-113: Improper Neutralization of CRLF Sequences in HTTP Headers.

Crow is a C++ microframework used to build HTTP and WebSocket services. Applications that pass user-controlled data into response headers are exposed to header splitting, cache poisoning, and cross-site scripting through injected content.

Critical Impact

Unauthenticated remote attackers can inject arbitrary HTTP headers and response bodies through unvalidated header values, enabling cache poisoning, session fixation, and cross-site scripting against downstream clients.

Affected Products

  • CrowCpp Crow versions up to and including 1.3.1
  • Applications using Crow HTTP response APIs with user-controlled header values
  • Downstream services and proxies fronting vulnerable Crow applications

Discovery Timeline

  • 2026-06-02 - CVE-2026-38967 published to the National Vulnerability Database (NVD)
  • 2026-06-03 - NVD record last modified

Technical Details for CVE-2026-38967

Vulnerability Analysis

The vulnerability stems from missing neutralization of CRLF sequences in HTTP response header values. Crow accepts arbitrary strings passed to header-setting APIs and serializes them directly into the response stream. When attacker-controlled input reaches a header value, embedded \r\n byte sequences terminate the current header and start a new one. This allows injection of additional headers or a complete second HTTP response.

The attack requires no authentication, no user interaction, and can be triggered over the network against any endpoint that reflects request data into response headers. Common patterns include redirect endpoints copying a Location value from a query parameter, custom headers echoing user-agent or referer values, or cookie-setting routes that mirror input into Set-Cookie.

Downstream impact depends on the deployment. Reverse proxies and caches that trust upstream responses may store poisoned content. Browsers receiving a split response can be coerced into executing injected script through a forged Content-Type: text/html header followed by an attacker-supplied body.

Root Cause

The Crow response serialization path does not reject or escape CR (0x0D) and LF (0x0A) octets when writing header values. RFC 9110 requires servers to reject or sanitize these bytes in field values. The fix discussed in the GitHub Pull Request adds validation that rejects control characters before headers are emitted.

Attack Vector

The attack vector is network-based against any HTTP endpoint that propagates untrusted input into a response header. An attacker submits a request containing URL-encoded %0d%0a sequences in a parameter that the application stores in a response header. The decoded bytes split the response, letting the attacker append arbitrary headers, set cookies, or inject a forged response body. See the GitHub Issue Discussion for the original report.

No verified public proof-of-concept code is associated with this CVE. The vulnerability mechanism is described in prose above and in the upstream issue tracker.

Detection Methods for CVE-2026-38967

Indicators of Compromise

  • HTTP request logs containing URL-encoded CRLF sequences (%0d%0a, %0D%0A, or raw \r\n) in query parameters, path segments, or header values
  • Response logs showing duplicate Content-Length, Content-Type, or Set-Cookie headers from the same request
  • Cache entries containing unexpected Set-Cookie headers tied to user-controllable input
  • Outbound responses with header values longer than expected baselines for the route

Detection Strategies

  • Deploy a web application firewall rule that blocks raw and encoded CR/LF bytes in request parameters destined for Crow endpoints
  • Add server-side logging of every header value written through Crow response builders and alert on control characters
  • Run authenticated dynamic application security testing (DAST) scans targeting redirect, cookie, and header-reflection routes
  • Compare response header counts and sizes against per-route baselines to surface anomalies

Monitoring Recommendations

  • Forward HTTP access logs to a centralized analytics platform and alert on %0d%0a patterns in request fields
  • Monitor reverse proxy and CDN logs for cache key collisions and unexpected Vary header changes
  • Track Crow application versions across the fleet using software bill of materials (SBOM) tooling
  • Review error logs for malformed response warnings emitted by upstream load balancers

How to Mitigate CVE-2026-38967

Immediate Actions Required

  • Inventory all services built on CrowCpp Crow and identify versions at or below 1.3.1
  • Apply input validation at the application layer to strip CR and LF bytes from any value passed to res.add_header, res.set_header, or cookie APIs
  • Place a hardened reverse proxy in front of Crow services to drop responses containing malformed headers
  • Audit application source code for routes that copy request data directly into response headers

Patch Information

A fix is tracked in the CrowCpp/Crow Pull Request #1167, which adds validation of response header values. Rebuild and redeploy Crow applications against the patched commit or a release later than 1.3.1 once available. Coordinate the rollout with downstream proxy and cache operators to invalidate any poisoned entries.

Workarounds

  • Wrap all header-setting calls in a helper that rejects strings containing \r or \n before invoking Crow APIs
  • Encode or hash any user-supplied value before placing it in a response header
  • Disable routes that reflect request input into Location, Set-Cookie, or custom headers until the patch is deployed
  • Configure upstream proxies such as nginx or Envoy to drop responses with duplicate Content-Length or embedded CRLF in header values
bash
# Example nginx configuration to reject malformed upstream responses
proxy_pass_header Server;
proxy_hide_header X-Powered-By;
proxy_intercept_errors on;

# Block requests containing encoded CRLF before they reach Crow
if ($args ~* "%0[dD]%0[aA]") {
    return 400;
}
if ($request_uri ~* "\r|\n") {
    return 400;
}

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechCrowcpp

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-113
  • Technical References
  • GitHub Issue Discussion

  • GitHub Pull Request
  • Latest CVEs
  • CVE-2026-49199: Acer Predator Connect W6x Firmware RCE Flaw

  • CVE-2026-46344: Openquantumsafe Liboqs DOS Vulnerability

  • CVE-2026-44518: Openquantumsafe Liboqs DoS Vulnerability

  • CVE-2026-42951: MacGregor VDR Information Disclosure Flaw
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