Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-3644

CVE-2026-3644: Python HTTP Cookies Auth Bypass Vulnerability

CVE-2026-3644 is an authentication bypass flaw in Python's HTTP cookie handling that allows control characters to evade validation. This article covers the technical details, affected versions, impact, and mitigation.

Published: March 20, 2026

CVE-2026-3644 Overview

CVE-2026-3644 is an input validation bypass vulnerability in Python's http.cookies module that represents an incomplete fix for the previously addressed CVE-2026-0672. The original patch intended to reject control characters in http.cookies.Morsel objects, but several code paths were inadvertently left unpatched, allowing attackers to bypass the input validation controls.

The vulnerability affects the Morsel.update() method, the |= operator implementation, and object unpickling paths. Additionally, the BaseCookie.js_output() method lacked the output validation that had been applied to BaseCookie.output(), creating an inconsistent security posture within the cookie handling module.

Critical Impact

Attackers can inject control characters into HTTP cookies through unpatched code paths, potentially enabling HTTP response splitting, session manipulation, or cross-site scripting attacks in web applications using Python's cookie handling.

Affected Products

  • Python CPython (versions prior to security patches)
  • Applications using Python's http.cookies module
  • Web frameworks relying on Python's native cookie handling

Discovery Timeline

  • 2026-03-16 - CVE CVE-2026-3644 published to NVD
  • 2026-03-17 - Last updated in NVD database

Technical Details for CVE-2026-3644

Vulnerability Analysis

This vulnerability falls under CWE-20 (Improper Input Validation) and stems from an incomplete security patch. When CVE-2026-0672 was addressed, the fix focused on validating control characters in certain code paths but failed to account for alternative methods that modify Morsel objects.

The Morsel class in Python's http.cookies module represents individual cookie attributes. While the initial fix added validation to prevent control characters from being set directly, the update() method, Python's |= augmented assignment operator, and the unpickling mechanism for serialized Morsel objects were overlooked.

Control characters in cookies can be weaponized for HTTP response splitting attacks, where injected newline characters (\r\n) allow attackers to terminate HTTP headers prematurely and inject arbitrary content. This can lead to cache poisoning, session hijacking, or cross-site scripting depending on the application context.

Root Cause

The root cause is incomplete patch coverage in the original CVE-2026-0672 fix. The _has_control_character() validation function existed but was not invoked consistently across all entry points that modify cookie attributes. Specifically:

  1. The Morsel.update() method directly updated the internal dictionary without validation
  2. The __ior__ method (implementing |=) was entirely missing, falling back to default behavior
  3. The BaseCookie.js_output() method generated JavaScript output without the same sanitization applied to output()

Attack Vector

The attack vector is network-based, requiring authenticated access. An attacker with the ability to influence cookie values through application inputs can inject control characters via the unpatched methods. This could occur through:

  1. Form submissions that populate cookie attributes
  2. API endpoints that accept cookie configuration
  3. Deserialization of attacker-controlled pickled Morsel objects
python
# Security patch in Lib/http/cookies.py
# Source: https://github.com/python/cpython/commit/57e88c1cf95e1481b94ae57abe1010469d47a6b4

             key = key.lower()
             if key not in self._reserved:
                 raise CookieError("Invalid attribute %r" % (key,))
+            if _has_control_character(key, val):
+                raise CookieError("Control characters are not allowed in "
+                                  f"cookies {key!r} {val!r}")
             data[key] = val
         dict.update(self, data)

+    def __ior__(self, values):
+        self.update(values)
+        return self
+
     def isReservedKey(self, K):
         return K.lower() in self._reserved

Source: GitHub CPython Commit

Detection Methods for CVE-2026-3644

Indicators of Compromise

  • HTTP cookies containing unexpected control characters (ASCII 0x00-0x1F, 0x7F)
  • Anomalous Set-Cookie headers with embedded newlines or carriage returns
  • Application logs showing CookieError exceptions after patching
  • Evidence of HTTP response splitting in web server access logs

Detection Strategies

  • Monitor application logs for unusual cookie parsing errors or exceptions in http.cookies module
  • Implement web application firewall (WAF) rules to detect control characters in cookie values
  • Review code for usage of Morsel.update(), |= operator on cookie objects, or unpickling of cookie data
  • Audit inbound requests for cookie values containing non-printable characters

Monitoring Recommendations

  • Enable verbose logging for Python's http.cookies module in production environments
  • Configure SentinelOne to monitor for process behavior anomalies in Python web applications
  • Establish baseline cookie patterns and alert on deviations that may indicate injection attempts
  • Monitor for HTTP response anomalies that could indicate successful response splitting

How to Mitigate CVE-2026-3644

Immediate Actions Required

  • Update Python to the latest patched version addressing CVE-2026-3644
  • Review application code for usage of Morsel.update(), |= operator, or cookie unpickling
  • Implement input validation at the application layer before passing data to cookie methods
  • Consider using third-party cookie libraries with robust validation until patches are applied

Patch Information

The Python development team has released security patches across multiple Python branches. The fix adds _has_control_character() validation to the Morsel.update() method and implements a proper __ior__ method that routes through the validated update() path.

Patches are available for Python 3.13 and 3.14 branches:

  • Python 3.13 Patch
  • Python 3.14 Patch
  • Main Branch Patch

For additional details, refer to the Python Security Announcement and GitHub Issue #145599.

Workarounds

  • Implement application-level validation to reject control characters before any cookie operations
  • Avoid using Morsel.update() or |= operators; set cookie attributes individually using validated setters
  • Do not unpickle Morsel or BaseCookie objects from untrusted sources
  • Use BaseCookie.output() instead of js_output() where possible, as it has proper validation
python
# Workaround: Validate cookie values before using update()
import re

def validate_cookie_value(value):
    """Reject control characters in cookie values."""
    if re.search(r'[\\x00-\\x1f\\x7f]', str(value)):
        raise ValueError("Control characters not allowed in cookie values")
    return value

# Apply validation before any Morsel operations
for key, val in user_input.items():
    validate_cookie_value(key)
    validate_cookie_value(val)

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechN/A

  • SeverityMEDIUM

  • CVSS Score6.0

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:L/UI:N/VC:L/VI:H/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-20
  • Technical References
  • GitHub CPython Commit Change

  • GitHub CPython Commit Change

  • GitHub CPython Commit Change

  • GitHub Issue Discussion

  • GitHub Pull Request Review

  • Python Security Announcement Thread
  • Latest CVEs
  • CVE-2025-52793: Esselink.nu Settings CSRF Vulnerability

  • CVE-2025-52772: Virtual Moderator CSRF Vulnerability

  • CVE-2025-48279: WC MyParcel Belgium XSS Vulnerability

  • CVE-2025-39381: KiotViet Sync CSRF 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