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
    • 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-32136

CVE-2026-32136: AdGuard Home Auth Bypass Vulnerability

CVE-2026-32136 is an authentication bypass flaw in AdGuard Home allowing unauthenticated attackers to gain full access via HTTP/2 upgrade requests. This article covers technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-32136 Overview

CVE-2026-32136 is an authentication bypass vulnerability in AdGuard Home, a network-wide software solution for blocking ads and tracking. Prior to version 0.107.73, an unauthenticated remote attacker can bypass all authentication in AdGuardHome by sending an HTTP/1.1 request that requests an upgrade to HTTP/2 cleartext (h2c). Once the upgrade is accepted, the resulting HTTP/2 connection is handled by the inner mux, which has no authentication middleware attached. All subsequent HTTP/2 requests on that connection are processed as fully authenticated, regardless of whether any credentials were provided.

Critical Impact

This vulnerability allows complete authentication bypass, enabling unauthenticated attackers to gain full administrative access to AdGuard Home instances exposed to the network.

Affected Products

  • AdGuard Home versions prior to 0.107.73

Discovery Timeline

  • 2026-03-11 - CVE CVE-2026-32136 published to NVD
  • 2026-03-12 - Last updated in NVD database

Technical Details for CVE-2026-32136

Vulnerability Analysis

This authentication bypass vulnerability (CWE-287) stems from a fundamental architectural flaw in how AdGuard Home handles HTTP protocol upgrades. When a client initiates an HTTP/1.1 to HTTP/2 cleartext (h2c) upgrade, the upgraded connection is routed to an internal multiplexer that lacks the authentication middleware present on the primary request handler.

The vulnerability is particularly severe because it requires no credentials and can be exploited remotely over the network. An attacker simply needs to craft an HTTP/1.1 request with the appropriate upgrade headers to transition to an unauthenticated HTTP/2 session. Once this upgrade completes, the attacker has unrestricted access to all administrative functions within AdGuard Home.

Root Cause

The root cause lies in the separation between the outer HTTP handler (which includes authentication middleware) and the inner multiplexer (mux) that handles upgraded HTTP/2 connections. When AdGuard Home accepts an h2c upgrade request, it transitions the connection to the inner mux without carrying forward the authentication requirements. This architectural oversight means that any HTTP/2 frames sent over the upgraded connection bypass all authentication checks entirely.

Attack Vector

The attack is initiated over the network and requires no authentication or user interaction. An attacker targets an exposed AdGuard Home instance by sending a specially crafted HTTP/1.1 request with headers indicating a desire to upgrade to HTTP/2 cleartext. The standard HTTP upgrade mechanism uses the Upgrade: h2c header along with HTTP2-Settings to negotiate the protocol switch.

Once the server accepts the upgrade and switches to HTTP/2, all subsequent requests on that connection are processed by the inner mux without authentication. This allows the attacker to perform any administrative action, including modifying DNS settings, disabling protection, accessing logs, or potentially pivoting to other network resources.

The vulnerability exploits the h2c (HTTP/2 cleartext) upgrade mechanism where the connection upgrade header bypasses the authentication layer. For detailed technical information, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-32136

Indicators of Compromise

  • HTTP/1.1 requests containing Upgrade: h2c headers targeting AdGuard Home instances
  • Unexpected administrative configuration changes in AdGuard Home without corresponding authenticated sessions
  • HTTP/2 connections established without prior authentication events in access logs
  • Anomalous DNS configuration modifications or filtering rule changes

Detection Strategies

  • Monitor web server and proxy logs for HTTP upgrade requests containing h2c protocol specifications
  • Implement network-level detection rules to alert on HTTP/1.1 to HTTP/2 cleartext upgrade attempts
  • Review AdGuard Home audit logs for administrative actions that lack corresponding authentication events
  • Deploy intrusion detection signatures to identify the specific header patterns associated with h2c upgrades

Monitoring Recommendations

  • Enable verbose logging on AdGuard Home instances to capture all connection upgrade attempts
  • Configure network security monitoring tools to baseline normal HTTP traffic patterns and alert on h2c upgrade requests
  • Implement centralized log collection for all AdGuard Home instances to facilitate correlation and analysis
  • Establish alerting for configuration changes to critical DNS and filtering settings

How to Mitigate CVE-2026-32136

Immediate Actions Required

  • Upgrade AdGuard Home to version 0.107.73 or later immediately
  • Restrict network access to AdGuard Home administrative interfaces using firewall rules
  • Place AdGuard Home behind a reverse proxy that does not forward h2c upgrade requests
  • Review recent configuration changes and audit logs for signs of unauthorized access

Patch Information

AdGuard has released version 0.107.73 which addresses this vulnerability by ensuring authentication middleware is applied to all connection types, including upgraded HTTP/2 connections. Organizations should prioritize upgrading to this patched version. For additional details, see the GitHub Security Advisory.

Workarounds

  • Deploy a reverse proxy in front of AdGuard Home that terminates h2c upgrade requests before they reach the application
  • Implement network-level access controls to restrict access to AdGuard Home to trusted IP addresses only
  • Disable external network access to AdGuard Home until patching can be completed
  • If using a load balancer or WAF, configure rules to block requests containing Upgrade: h2c headers
bash
# Example: Block h2c upgrades at nginx reverse proxy level
# Add to nginx server block for AdGuard Home
location / {
    # Block HTTP/2 cleartext upgrade requests
    if ($http_upgrade ~* "h2c") {
        return 403;
    }
    proxy_pass http://adguardhome:3000;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechAdguard Home

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.17%

  • 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-287
  • Technical References
  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2025-9185: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9184: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-8030: Mozilla Firefox RCE 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