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

CVE-2026-29199: phpBB Auth Bypass Vulnerability

CVE-2026-29199 is an authentication bypass flaw in phpBB via Host Header Injection that enables password reset link poisoning. Attackers can manipulate the Host header to redirect users to malicious domains.

Published: May 7, 2026

CVE-2026-29199 Overview

CVE-2026-29199 is a Host Header Injection vulnerability affecting phpBB versions before 3.3.16. The flaw resides in the password reset link generation logic. When the force_server_vars configuration option is disabled, phpBB derives the server hostname from the inbound HTTP Host header. An attacker who controls or manipulates the Host header can cause password reset emails to embed links pointing to an attacker-controlled domain. Victims who click the poisoned link transmit their reset token to the attacker, enabling account takeover. The issue is tracked under CWE-640: Weak Password Recovery Mechanism for Forgotten Password.

Critical Impact

Successful exploitation allows an attacker to hijack password reset tokens and take over arbitrary phpBB accounts, including administrators.

Affected Products

  • phpBB versions prior to 3.3.16
  • Deployments where force_server_vars is disabled
  • Forums fronted by webservers that do not validate the Host header

Discovery Timeline

  • 2026-05-04 - CVE-2026-29199 published to NVD
  • 2026-05-04 - Last updated in NVD database

Technical Details for CVE-2026-29199

Vulnerability Analysis

phpBB constructs absolute URLs for password reset emails by reading the hostname from server-side variables. When the administrative setting force_server_vars is disabled, the application falls back to the HTTP_HOST value supplied by the client. This value originates from the inbound Host header and is not validated against an allowlist of trusted hostnames. An attacker submits a password reset request for a target account while injecting a malicious Host header value. The mailer then renders the reset URL using the attacker-supplied hostname, while the email body still travels through the legitimate phpBB SMTP pipeline. The victim receives a credible-looking message and follows the poisoned link, sending the single-use token to the attacker's server. The attacker replays the token against the legitimate phpBB instance to set a new password and seize the account.

Root Cause

The root cause is missing validation of the Host request header in the URL generation routine used by the password reset feature. phpBB trusts the client-controlled header instead of binding URL generation to a configured canonical hostname. Operators who leave force_server_vars disabled inherit the vulnerable code path.

Attack Vector

The attack is remote and unauthenticated, but requires user interaction because the victim must click the poisoned link in the reset email. Exploitation typically proceeds as follows. The attacker sends a crafted POST request to the phpBB password reset endpoint with a Host header pointing to attacker.example. phpBB generates a reset URL such as https://attacker.example/ucp.php?mode=confirm_reset_password&... and emails it to the victim. The victim clicks the link, and the attacker's webserver captures the token and user identifier. The attacker forwards the captured token to the legitimate phpBB host to complete the password change. See the HackerOne Report #3543246 for additional technical context.

Detection Methods for CVE-2026-29199

Indicators of Compromise

  • Outbound password reset emails containing URLs whose hostname does not match the canonical forum domain
  • HTTP requests to ucp.php?mode=sendpassword with Host header values that differ from the configured server name
  • Webserver access logs showing unusual or spoofed Host headers preceding mail delivery events
  • User reports of password reset emails referencing unfamiliar domains

Detection Strategies

  • Inspect web access logs for requests targeting password reset endpoints with mismatched Host headers compared to the Server-Name directive
  • Correlate phpBB mailer logs with HTTP request logs to identify reset emails generated from suspicious headers
  • Deploy WAF rules that flag Host header values not present in an allowlist of expected hostnames

Monitoring Recommendations

  • Alert on password reset request volume spikes targeting administrative or moderator accounts
  • Monitor outbound mail content for reset URLs whose domain does not match the forum's canonical hostname
  • Track authentication state changes occurring shortly after a reset link is issued from an anomalous source

How to Mitigate CVE-2026-29199

Immediate Actions Required

  • Upgrade phpBB to version 3.3.16 or later
  • Set force_server_vars to enabled in the Administration Control Panel and configure an explicit server_name and server_protocol
  • Configure the upstream webserver (Apache, nginx, or load balancer) to reject requests with unexpected Host headers
  • Audit recent password reset activity for evidence of exploitation

Patch Information

The phpBB project addressed the issue in version 3.3.16 by hardening URL generation so password reset links rely on configured server variables rather than the client-supplied Host header. Administrators should apply the official upgrade package from the phpBB downloads portal. Refer to the HackerOne Report #3543246 for disclosure details.

Workarounds

  • Enable force_server_vars in the phpBB ACP and define the canonical hostname under General → Server Settings
  • Configure the webserver to enforce a strict Host header allowlist and return HTTP 400 for non-matching values
  • Restrict access to the password reset endpoint behind rate limiting and CAPTCHA to slow targeted exploitation
bash
# Example nginx configuration to enforce a Host header allowlist
server {
    listen 443 ssl;
    server_name forum.example.com;

    if ($host !~* ^(forum\.example\.com)$) {
        return 400;
    }

    # ... remaining phpBB configuration
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechPhpbb

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityNone
  • CWE References
  • CWE-640
  • Technical References
  • HackerOne Report #3543246
  • Related CVEs
  • CVE-2019-25685: phpBB RCE Vulnerability

  • CVE-2025-70811: phpBB3 CSRF Vulnerability in Admin Panel

  • CVE-2025-70810: Phpbb phbb3 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