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

CVE-2026-33406: Pi-hole Admin Interface XSS Vulnerability

CVE-2026-33406 is an XSS flaw in Pi-hole Admin Interface affecting versions 6.0 to before 6.5. Attackers can inject HTML attributes via malicious teleporter backups. This article covers technical details, impact, and mitigation.

Published: April 10, 2026

CVE-2026-33406 Overview

CVE-2026-33406 is a Cross-Site Scripting (XSS) vulnerability affecting the Pi-hole Admin Interface, a web interface for managing Pi-hole network-level ad and tracker blocking applications. The vulnerability exists in versions 6.0 through 6.4, where configuration values from the /api/config endpoint are placed directly into HTML value="" attributes without proper escaping in settings-advanced.js, enabling HTML attribute injection.

Critical Impact

Attackers can inject malicious HTML attributes by importing a crafted teleporter backup file, bypassing per-field server-side validation and enabling UI redressing attacks on Pi-hole administrators.

Affected Products

  • Pi-hole Admin Interface versions 6.0 to 6.4
  • Pi-hole Web Interface (pi-hole/web repository)

Discovery Timeline

  • 2026-04-06 - CVE CVE-2026-33406 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-33406

Vulnerability Analysis

This vulnerability is classified as CWE-79 (Improper Neutralization of Input During Web Page Generation), commonly known as Cross-Site Scripting. The flaw originates from insufficient output encoding in the settings-advanced.js file where configuration values retrieved from the /api/config endpoint are directly inserted into HTML attribute contexts without proper escaping.

When a double quote character appears in any configuration value, it breaks out of the intended value="" attribute context, allowing attackers to inject arbitrary HTML attributes into page elements. While the server's Content Security Policy (CSP) with script-src 'self' directive effectively blocks JavaScript execution, the injected attributes can still modify element styling and behavior, enabling UI redressing attacks.

Root Cause

The root cause is improper output encoding of user-controlled configuration data before insertion into HTML attributes. The settings-advanced.js file fails to escape special characters (particularly double quotes) when populating form field values from the API response, creating an attribute injection vulnerability.

Attack Vector

The primary attack vector involves importing a malicious teleporter backup file. Teleporter is Pi-hole's backup/restore functionality that allows administrators to export and import configurations. An attacker can craft a backup file containing malicious configuration values with embedded HTML attribute injection payloads.

When an administrator imports this malicious backup, the injected values bypass per-field server-side validation because the teleporter import process does not apply the same validation rules as direct field edits. Once imported, the malicious configuration values are served through the /api/config endpoint and rendered unsafely in the admin interface, allowing UI manipulation through injected style attributes or other HTML modifications.

Since no verified code examples are available for this vulnerability, readers should refer to the GitHub Security Advisory for detailed technical information about the injection mechanism and payload examples.

Detection Methods for CVE-2026-33406

Indicators of Compromise

  • Unexpected double quote characters or HTML attribute syntax in Pi-hole configuration values
  • Modified or suspicious teleporter backup files with unusual configuration entries
  • Configuration values containing style=, onclick=, onmouseover=, or other HTML attributes
  • Unexplained visual changes or UI anomalies in the Pi-hole admin interface

Detection Strategies

  • Review Pi-hole configuration files and database entries for suspicious patterns containing HTML special characters
  • Monitor teleporter import activities and audit imported backup files before restoration
  • Implement file integrity monitoring on Pi-hole configuration directories
  • Analyze web server access logs for unusual patterns accessing the /api/config endpoint

Monitoring Recommendations

  • Enable detailed logging for Pi-hole admin interface access and configuration changes
  • Set up alerts for teleporter backup import events, especially from untrusted sources
  • Monitor for configuration drift by periodically comparing current values against known-good baselines
  • Implement browser developer console monitoring for unexpected DOM modifications when accessing admin pages

How to Mitigate CVE-2026-33406

Immediate Actions Required

  • Upgrade Pi-hole Admin Interface to version 6.5 or later immediately
  • Avoid importing teleporter backup files from untrusted or unverified sources
  • Review existing configuration values for signs of injection attempts
  • Restrict admin interface access to trusted networks and users only

Patch Information

The vulnerability is fixed in Pi-hole Admin Interface version 6.5. The patch implements proper HTML attribute escaping for configuration values before insertion into the DOM. Administrators should update through their standard Pi-hole update mechanism or by following the instructions in the GitHub Security Advisory.

Workarounds

  • Disable or restrict access to the teleporter import functionality until patching is complete
  • Implement network segmentation to limit admin interface exposure to trusted management networks only
  • Use a web application firewall (WAF) to filter requests containing suspicious HTML attribute patterns
  • Manually review and sanitize any teleporter backup files before importing by inspecting configuration values for HTML special characters
bash
# Update Pi-hole to the latest version including the security fix
pihole -up

# Verify the installed web interface version
pihole -v

# Restrict admin interface to local network (example using lighttpd)
# Edit /etc/lighttpd/external.conf and add:
# $HTTP["remoteip"] !~ "192.168.1.0/24" { url.access-deny = ( "/admin/" ) }

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechPi Hole

  • SeverityMEDIUM

  • CVSS Score5.4

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33405: Pi-hole Web Interface XSS Vulnerability

  • CVE-2026-33403: Pi-hole Admin Interface XSS Vulnerability

  • CVE-2026-33404: Pi-hole Admin Interface XSS Vulnerability

  • CVE-2026-26953: Pi-hole Admin Interface XSS 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