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

CVE-2026-33307: Mod_gnutls Buffer Overflow Vulnerability

CVE-2026-33307 is a buffer overflow vulnerability in Mod_gnutls, a TLS module for Apache HTTPD. It affects client certificate verification and can cause crashes. This article covers technical details, affected versions, and mitigations.

Published: March 27, 2026

CVE-2026-33307 Overview

CVE-2026-33307 is a stack-based buffer overflow vulnerability in mod_gnutls, a TLS module for Apache HTTPD based on GnuTLS. The vulnerability exists in the client certificate verification code, which imports the certificate chain sent by the client into a fixed-size gnutls_x509_crt_t x509[] array without validating that the number of certificates does not exceed the array size. While no attacker-controlled data is written directly into the stack buffer (since gnutls_x509_crt_t is a typedef for a pointer to an opaque GnuTLS structure), writing a pointer beyond the last array element can trigger a segmentation fault and potentially cause stack corruption.

Critical Impact

Attackers can remotely cause denial of service by sending malformed certificate chains to servers with client certificate verification enabled.

Affected Products

  • mod_gnutls versions prior to 0.12.3
  • mod_gnutls versions prior to 0.13.0
  • Apache HTTPD servers with GnuTLSClientVerify configured (not using the default ignore setting)

Discovery Timeline

  • 2026-03-24 - CVE CVE-2026-33307 published to NVD
  • 2026-03-24 - Last updated in NVD database

Technical Details for CVE-2026-33307

Vulnerability Analysis

This vulnerability is classified under CWE-121 (Stack-based Buffer Overflow). The flaw occurs during client certificate verification where the code imports certificates from a client-provided chain into a statically-sized array. The absence of bounds checking allows an attacker to send a certificate chain that exceeds the buffer capacity. Although the overflow writes only internal GnuTLS structure pointers (created via gnutls_x509_crt_init()) rather than attacker-controlled data, this still results in memory corruption that typically manifests as a segmentation fault, causing the Apache worker process to crash.

Server configurations using the default GnuTLSClientVerify ignore setting are not affected, as client certificate processing is bypassed entirely in this mode.

Root Cause

The root cause is insufficient input validation in the certificate chain processing logic. The code assumes the client will send a certificate chain within expected bounds but fails to enforce this assumption before importing certificates into the fixed-size array. This missing bounds check allows an oversized certificate chain to write beyond the allocated stack buffer.

Attack Vector

This vulnerability is exploitable over the network without requiring authentication or user interaction. An attacker can craft a TLS client hello message with a certificate chain containing more certificates than the server's buffer can accommodate. When the server attempts to verify the client certificate, it will iterate through the chain and write pointers beyond the array boundary, leading to a crash. Repeated exploitation can result in sustained denial of service against the affected server.

c
                 "GnuTLS: Failed to Verify Peer: "
                 "Client did not submit a certificate");
         return HTTP_FORBIDDEN;
+    } else if (cert_list_size > MAX_CHAIN_SIZE) {
+        ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
+                      "Client sent certificate chain with length %u, "
+                      "maximum supported length is %u",
+                      cert_list_size, MAX_CHAIN_SIZE);
+        return HTTP_FORBIDDEN;
     }
 
     if (gnutls_certificate_type_get(ctxt->session) == GNUTLS_CRT_X509) {

Source: GitHub Commit Details

Detection Methods for CVE-2026-33307

Indicators of Compromise

  • Unexpected Apache HTTPD worker process crashes or restarts
  • Segmentation faults logged in system error logs correlated with TLS handshakes
  • Abnormal TLS client certificate negotiation attempts with unusually long certificate chains
  • Increased memory errors in Apache error logs related to mod_gnutls

Detection Strategies

  • Monitor Apache error logs for repeated segmentation faults or crash messages from mod_gnutls
  • Implement network monitoring to detect TLS handshakes with abnormally large certificate chains
  • Deploy intrusion detection rules to identify client certificate chains exceeding typical lengths
  • Use application performance monitoring to track Apache worker process stability

Monitoring Recommendations

  • Enable verbose logging for mod_gnutls to capture certificate verification events
  • Configure alerting for Apache child process termination patterns indicative of crashes
  • Monitor TLS connection metrics for anomalous certificate chain sizes
  • Review system logs for SIGSEGV signals originating from Apache processes

How to Mitigate CVE-2026-33307

Immediate Actions Required

  • Upgrade mod_gnutls to version 0.12.3 or 0.13.0 immediately
  • If client certificate verification is not required, ensure GnuTLSClientVerify ignore (the default) is explicitly set
  • Audit server configurations to identify systems using non-default GnuTLSClientVerify settings
  • Consider temporarily disabling client certificate verification until patches can be applied

Patch Information

The vulnerability has been addressed in mod_gnutls version 0.12.3 and version 0.13.0. Version 0.12.3 adds explicit bounds checking to reject certificate chains exceeding the buffer length, returning HTTP_FORBIDDEN when the chain is too long. Version 0.13.0 takes a more comprehensive approach by rewriting certificate verification to use gnutls_certificate_verify_peers(), which eliminates the need for the fixed-size buffer entirely. Users on the 0.12.x branch who cannot immediately upgrade to 0.13.0 should apply version 0.12.3 as a minimal fix.

For detailed patch information, see the GitHub Security Advisory and the fix commit.

Workarounds

  • No workaround is available according to the vendor advisory
  • Servers using GnuTLSClientVerify ignore (the default configuration) are not affected
  • If client certificate verification can be temporarily disabled, set GnuTLSClientVerify ignore until patching is possible
  • Implement network-level filtering to limit certificate chain sizes if your infrastructure supports it
bash
# Verify current mod_gnutls version
apachectl -M | grep gnutls
# Check for GnuTLSClientVerify settings in Apache configuration
grep -r "GnuTLSClientVerify" /etc/apache2/ /etc/httpd/
# Temporarily disable client certificate verification (if acceptable)
# Set in your mod_gnutls configuration:
# GnuTLSClientVerify ignore

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechMod Gnutls

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-121
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33308: Mod_gnutls Auth Bypass 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