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

CVE-2026-4280: Breaking News WP Path Traversal Flaw

CVE-2026-4280 is a path traversal vulnerability in the Breaking News WP plugin for WordPress that allows authenticated attackers to include arbitrary files. This article covers the technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-4280 Overview

The Breaking News WP plugin for WordPress contains a Local File Inclusion (LFI) vulnerability affecting all versions up to and including 1.3. This vulnerability exists in the brnwp_ajax_form AJAX endpoint, which lacks both authorization checks and CSRF verification. Combined with insufficient path validation when the brnwp_theme option value is passed directly to an include() statement in the brnwp_show_breaking_news_wp() shortcode handler, authenticated attackers with Subscriber-level access can achieve arbitrary file inclusion on the server.

Critical Impact

Authenticated attackers with minimal privileges (Subscriber-level) can read sensitive files on the server, including configuration files containing database credentials and other sensitive information, potentially leading to full site compromise.

Affected Products

  • Breaking News WP plugin for WordPress versions up to and including 1.3
  • WordPress installations with Breaking News WP plugin active
  • All server configurations where the plugin is deployed without additional access controls

Discovery Timeline

  • 2026-04-22 - CVE-2026-4280 published to NVD
  • 2026-04-22 - Last updated in NVD database

Technical Details for CVE-2026-4280

Vulnerability Analysis

This vulnerability combines multiple security weaknesses to enable Local File Inclusion. The brnwp_ajax_form AJAX endpoint permits authenticated users with Subscriber-level access to modify the brnwp_theme plugin option without proper authorization checks. While the plugin applies sanitize_text_field() to user input, this sanitization function does not strip directory traversal sequences (../), allowing attackers to inject path traversal payloads.

When the brnwp_show_breaking_news_wp() shortcode is subsequently rendered, the unsanitized brnwp_theme option value is passed directly to a PHP include() statement, enabling arbitrary file inclusion. This allows attackers to read sensitive system files such as /etc/passwd or WordPress configuration files containing database credentials.

Root Cause

The root cause is a combination of missing security controls: the AJAX endpoint lacks proper capability checks and CSRF token verification, while the file inclusion logic uses inadequate path validation. The sanitize_text_field() function is designed for sanitizing text output rather than file path validation, making it ineffective at preventing directory traversal attacks. Proper implementation would require explicit path validation using functions like realpath() with directory boundary checks, combined with proper authorization and nonce verification on the AJAX endpoint.

Attack Vector

The attack is carried out over the network and requires authentication with at least Subscriber-level privileges. An attacker first sends a malicious AJAX request to the brnwp_ajax_form endpoint, overwriting the brnwp_theme option with a directory traversal payload (e.g., ../../../../etc/passwd). When any visitor loads a page containing the Breaking News WP shortcode, the malicious path is included via PHP's include() function, exposing the contents of the targeted file.

The vulnerability code can be examined in the Breaking News WP plugin source at line 366, line 372, and line 85 where the unsafe option handling and file inclusion occur. For detailed technical analysis, refer to the Wordfence Vulnerability Report.

Detection Methods for CVE-2026-4280

Indicators of Compromise

  • Unexpected changes to the brnwp_theme WordPress option containing directory traversal sequences (../)
  • AJAX requests to admin-ajax.php with action brnwp_ajax_form from Subscriber-level accounts
  • Web server logs showing access patterns with directory traversal payloads targeting the plugin
  • Unusual file access patterns in system logs indicating reads of /etc/passwd or wp-config.php

Detection Strategies

  • Monitor WordPress options table for modifications to brnwp_theme containing path traversal patterns
  • Implement Web Application Firewall (WAF) rules to detect and block directory traversal sequences in AJAX requests
  • Review PHP error logs for file inclusion warnings referencing paths outside the plugin directory
  • Audit user activity logs for Subscriber-level accounts making administrative option changes

Monitoring Recommendations

  • Enable comprehensive logging on admin-ajax.php requests, particularly those targeting Breaking News WP actions
  • Configure file integrity monitoring on sensitive system and WordPress configuration files
  • Set up alerts for failed file inclusion attempts or unexpected file access patterns
  • Monitor for new user account registrations followed by immediate AJAX activity

How to Mitigate CVE-2026-4280

Immediate Actions Required

  • Deactivate and remove the Breaking News WP plugin until a patched version is released
  • Audit WordPress user accounts and remove unnecessary Subscriber-level access
  • Review the brnwp_theme option in the WordPress database for any malicious values
  • Check server logs for signs of exploitation and rotate credentials if compromise is suspected

Patch Information

No official patch has been released at this time. Users should check the WordPress plugin repository for updates beyond version 1.3. Monitor the WordPress Plugin Trunk for any security fixes applied to the vulnerable code paths.

Workarounds

  • Remove or disable the Breaking News WP plugin until an official fix is available
  • Implement server-level restrictions using open_basedir PHP directive to limit file inclusion scope
  • Deploy WAF rules to block requests containing directory traversal sequences to the affected AJAX endpoint
  • Restrict the WordPress REST API and AJAX endpoints to authenticated administrators only
bash
# Apache .htaccess example to block directory traversal in AJAX requests
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{QUERY_STRING} (\.\./) [NC,OR]
    RewriteCond %{QUERY_STRING} (brnwp_ajax_form) [NC]
    RewriteRule .* - [F,L]
</IfModule>

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.09%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • WordPress Plugin Code Line 366

  • WordPress Plugin Code Line 372

  • WordPress Plugin Code Line 85

  • WordPress Plugin Trunk Line 366

  • WordPress Plugin Trunk Line 372

  • WordPress Plugin Trunk Line 85

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-3464: WP Customer Area Path Traversal Flaw

  • CVE-2026-4659: Elementor Plugin Path Traversal Flaw

  • CVE-2026-4853: JetBackup Path Traversal Vulnerability

  • CVE-2026-6248: wpForo Forum Path Traversal 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