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

CVE-2026-1165: Popup Box WordPress Plugin CSRF Flaw

CVE-2026-1165 is a Cross-Site Request Forgery flaw in the Popup Box WordPress plugin that allows attackers to manipulate popup publish status through social engineering. This article covers technical details, affected versions, and mitigation.

Published: February 6, 2026

CVE-2026-1165 Overview

The Popup Box plugin for WordPress contains a Cross-Site Request Forgery (CSRF) vulnerability in all versions up to and including 6.1.1. The vulnerability exists due to a flawed nonce implementation in the publish_unpublish_popupbox function that verifies a self-created nonce rather than one submitted in the request. This security flaw enables unauthenticated attackers to manipulate the publish status of popups through forged requests when they can trick a site administrator into performing an action such as clicking a malicious link.

Critical Impact

Unauthenticated attackers can modify popup publish status via CSRF, potentially disrupting website functionality or enabling further attacks through popup manipulation.

Affected Products

  • WordPress Popup Box Plugin versions up to and including 6.1.1
  • WordPress sites using the ays-popup-box plugin

Discovery Timeline

  • 2026-01-31 - CVE-2026-1165 published to NVD
  • 2026-02-03 - Last updated in NVD database

Technical Details for CVE-2026-1165

Vulnerability Analysis

This CSRF vulnerability stems from improper nonce verification in the WordPress Popup Box plugin. The publish_unpublish_popupbox function contains a fundamental security flaw where it validates a self-generated nonce instead of verifying the nonce token submitted with the incoming HTTP request. This breaks the entire CSRF protection mechanism that WordPress nonces are designed to provide.

In WordPress, nonces serve as security tokens to verify that requests originate from legitimate sources and that the user intended to perform the action. When a function verifies its own generated nonce rather than the one passed in the request, it effectively bypasses this protection entirely, allowing any external request to pass the security check.

Root Cause

The root cause is the incorrect implementation of WordPress nonce verification in the publish_unpublish_popupbox function located in the plugin's list table class. The vulnerable code can be found in class-ays-pb-list-table.php at line 701, where the nonce verification logic checks against a locally generated value instead of the request-submitted nonce parameter. This implementation error negates the purpose of CSRF protection tokens.

Attack Vector

An attacker can exploit this vulnerability through the following attack scenario:

  1. The attacker crafts a malicious webpage or email containing a hidden form or link that targets the vulnerable publish_unpublish_popupbox function
  2. The attacker tricks a logged-in WordPress administrator into visiting the malicious page or clicking the link
  3. The victim's browser automatically sends the forged request with their authenticated session cookies
  4. Due to the flawed nonce verification, the plugin accepts the request as legitimate
  5. The popup's publish status is changed without the administrator's knowledge or consent

This vulnerability requires user interaction (the administrator must click a link or visit a malicious page), but no authentication is required from the attacker's perspective. The attack can be executed entirely over the network.

Detection Methods for CVE-2026-1165

Indicators of Compromise

  • Unexpected changes to popup publish/unpublish status in the WordPress Popup Box plugin
  • Administrator accounts showing activity during periods when the user was not actively logged in
  • Referrer logs showing requests to popup management endpoints originating from external domains
  • HTTP access logs containing POST requests to admin-ajax.php with popup-related actions from suspicious sources

Detection Strategies

  • Monitor WordPress admin action logs for unauthorized popup status changes using security plugins
  • Implement web application firewall rules to detect CSRF attack patterns targeting WordPress admin functions
  • Review server access logs for unusual patterns of requests to the Popup Box plugin endpoints
  • Enable WordPress audit logging to track all changes to popup configurations and their originating sessions

Monitoring Recommendations

  • Deploy endpoint protection solutions like SentinelOne to detect and block malicious web requests targeting WordPress installations
  • Configure alerts for bulk or rapid changes to popup settings that may indicate automated CSRF exploitation
  • Monitor for unusual administrator session activity patterns that could indicate compromised sessions
  • Implement Content Security Policy headers to reduce the risk of CSRF attacks through embedded content

How to Mitigate CVE-2026-1165

Immediate Actions Required

  • Update the Popup Box plugin to version 6.1.2 or later immediately
  • Review popup configurations for any unauthorized changes that may have occurred before patching
  • Consider temporarily disabling the plugin if immediate update is not possible
  • Audit administrator accounts for any signs of unauthorized activity

Patch Information

A security patch addressing this vulnerability is available in version 6.1.2 of the Popup Box plugin. The fix properly implements nonce verification by checking the nonce value submitted in the request rather than a self-generated value. The patch changes can be reviewed in the WordPress Plugin Version Change.

Additional technical details about the vulnerability are available in the Wordfence Vulnerability Report.

Workarounds

  • Implement additional CSRF protection at the web server or WAF level to filter suspicious cross-origin requests to WordPress admin endpoints
  • Restrict administrative access to trusted IP addresses using .htaccess or server configuration
  • Educate administrators about phishing risks and avoiding clicking suspicious links while logged into WordPress
  • Consider using browser extensions that warn about potential CSRF attacks or block cross-origin form submissions
bash
# Apache .htaccess example to restrict admin access by IP
<Files wp-admin/*>
  Order Deny,Allow
  Deny from all
  Allow from 192.168.1.0/24
  Allow from your.trusted.ip.address
</Files>

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-352
  • Technical References
  • WordPress Plugin Code Snippet

  • WordPress Plugin List Class

  • WordPress Plugin Version Change

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-4401: Download Monitor WordPress Plugin CSRF Flaw

  • CVE-2026-4141: WordPress Quran Translations CSRF Vulnerability

  • CVE-2026-0811: Advanced Contact Form 7 DB CSRF Vulnerability

  • CVE-2026-3191: Minify HTML WordPress Plugin CSRF Flaw
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