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

CVE-2026-35491: Pi-hole FTL Auth Bypass Vulnerability

CVE-2026-35491 is an authorization bypass flaw in Pi-hole FTL versions 6.0 to before 6.6 that allows CLI sessions to overwrite configuration via Teleporter imports. This article covers technical details, affected versions, impact, and mitigation.

Published: April 10, 2026

CVE-2026-35491 Overview

CVE-2026-35491 is an authorization bypass vulnerability in FTLDNS (pihole-FTL), the core component that provides an interactive API and generates statistics for Pi-hole's Web interface. The vulnerability exists in versions 6.0 to before 6.6 and allows CLI-scoped API sessions to bypass intended access controls and overwrite system configuration through the Teleporter import functionality.

Critical Impact

A local attacker with CLI session access can bypass authorization controls and overwrite Pi-hole configuration by exploiting inconsistent access control enforcement between /api/config and /api/teleporter endpoints.

Affected Products

  • Pi-hole FTL versions 6.0 to before 6.6
  • FTLDNS (pihole-FTL) with CLI password feature enabled (webserver.api.cli_pw)

Discovery Timeline

  • 2026-04-07 - CVE CVE-2026-35491 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-35491

Vulnerability Analysis

This vulnerability (CWE-863: Incorrect Authorization) stems from inconsistent enforcement of access controls across different API endpoints in Pi-hole FTL. The application implements a CLI password feature (webserver.api.cli_pw) that creates "CLI" API sessions designed to be read-only for configuration changes. While the /api/config endpoint correctly validates and blocks CLI sessions from making configuration mutations, the /api/teleporter endpoint fails to apply the same authorization checks.

The Teleporter feature in Pi-hole is designed to import and export configuration archives, allowing administrators to backup and restore settings. However, the authorization logic for this endpoint does not properly restrict CLI sessions, creating an inconsistency in the security model. An attacker with access to a CLI-scoped session can leverage this gap to import a malicious Teleporter archive, effectively overwriting the Pi-hole configuration and bypassing the read-only restrictions that should apply to their session.

Root Cause

The root cause is a CWE-863 (Incorrect Authorization) flaw where the /api/teleporter endpoint does not enforce the same session-type restrictions as /api/config. While CLI sessions are correctly identified and blocked from mutating configuration through the primary configuration API, the Teleporter import functionality accepts these sessions without verifying whether they have the appropriate authorization level for configuration changes.

Attack Vector

The attack requires local access to the system running Pi-hole FTL. An attacker must first obtain or create a CLI API session using the webserver.api.cli_pw feature. With this session, the attacker can craft a Teleporter archive containing malicious configuration changes and submit it through the /api/teleporter endpoint. Since this endpoint does not validate that CLI sessions should be read-only, the import proceeds and overwrites the existing configuration.

The attack scenario involves:

  1. Establishing a CLI-scoped API session
  2. Creating a Teleporter archive with attacker-controlled configuration
  3. Submitting the archive to /api/teleporter which bypasses the CLI session restrictions
  4. Pi-hole configuration is overwritten with the attacker's settings

Detection Methods for CVE-2026-35491

Indicators of Compromise

  • Unexpected configuration changes to Pi-hole settings without corresponding administrative actions
  • Teleporter import events in Pi-hole logs originating from CLI sessions
  • Modifications to DNS blocking lists, upstream DNS servers, or other critical Pi-hole settings

Detection Strategies

  • Monitor Pi-hole FTL logs for Teleporter import operations and correlate with session types
  • Implement file integrity monitoring on Pi-hole configuration files to detect unauthorized modifications
  • Review API access logs for unusual patterns of CLI session activity targeting the /api/teleporter endpoint

Monitoring Recommendations

  • Enable detailed logging for the Pi-hole FTL API to capture session type and endpoint access patterns
  • Configure alerts for configuration changes that occur outside of expected maintenance windows
  • Implement network segmentation to limit local access to Pi-hole management interfaces

How to Mitigate CVE-2026-35491

Immediate Actions Required

  • Upgrade Pi-hole FTL to version 6.6 or later immediately
  • Review recent Teleporter import activity in logs for any unauthorized configuration changes
  • Restrict access to CLI sessions and audit users with local system access
  • Verify current Pi-hole configuration integrity against known-good backups

Patch Information

This vulnerability is fixed in Pi-hole FTL version 6.6. Users should upgrade to this version or later to remediate the authorization bypass. The patch ensures that CLI sessions are properly restricted from performing Teleporter imports, maintaining consistent access control enforcement across all configuration-modifying endpoints. For detailed information, see the GitHub Security Advisory.

Workarounds

  • Disable the CLI password feature (webserver.api.cli_pw) if not required for operations
  • Restrict local system access to trusted administrators only until the patch is applied
  • Implement additional access controls at the network or system level to limit API endpoint exposure
  • Monitor and audit all Teleporter operations until the upgrade is complete
bash
# Upgrade Pi-hole FTL to patched version
pihole -up

# Verify the installed version is 6.6 or later
pihole -v

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechPihole

  • SeverityMEDIUM

  • CVSS Score6.1

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-863
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-35520: Pi-hole FTL Engine RCE Vulnerability

  • CVE-2026-35518: Pi-hole FTL Engine RCE Vulnerability

  • CVE-2026-35517: Pi-hole FTL Engine 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