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

CVE-2026-2023: WP Plugin Info Card CSRF Vulnerability

CVE-2026-2023 is a Cross-Site Request Forgery flaw in WP Plugin Info Card for WordPress that allows attackers to modify plugin entries. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 20, 2026

CVE-2026-2023 Overview

The WP Plugin Info Card plugin for WordPress contains a Cross-Site Request Forgery (CSRF) vulnerability affecting all versions up to and including 6.2.0. This security flaw exists due to missing nonce validation in the ajax_save_custom_plugin() function, where the security check has been intentionally disabled by prefixing it with false &&. This makes it possible for unauthenticated attackers to create or modify custom plugin entries via a forged request, provided they can trick a site administrator into performing an action such as clicking on a malicious link.

Critical Impact

Unauthenticated attackers can manipulate custom plugin entries on WordPress sites by exploiting disabled nonce validation, potentially leading to content manipulation and site integrity compromise.

Affected Products

  • WP Plugin Info Card plugin for WordPress versions up to and including 6.2.0

Discovery Timeline

  • 2026-02-18 - CVE-2026-2023 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2026-2023

Vulnerability Analysis

This vulnerability is classified as CWE-352 (Cross-Site Request Forgery). The root cause lies in the improper implementation of nonce validation within the ajax_save_custom_plugin() function located in php/Admin/Init.php. WordPress nonce tokens are designed to protect against CSRF attacks by verifying that requests originate from authenticated users with proper authorization.

In this case, the nonce validation check has been explicitly disabled in the code by prepending the conditional check with false &&, effectively making the security check always evaluate to false and bypass the protection entirely. This architectural oversight allows attackers to craft malicious requests that, when executed by an authenticated administrator, will be processed by the server as legitimate actions.

Root Cause

The vulnerability stems from disabled nonce validation in the ajax_save_custom_plugin() function. The security check that should verify the authenticity of incoming requests has been disabled by modifying the conditional logic with false &&, which causes the nonce verification to never execute. This pattern suggests either a debugging artifact left in production code or an intentional but misguided attempt to disable security controls.

Attack Vector

The attack vector is network-based and requires user interaction. An attacker must craft a malicious HTML page or link containing a forged request targeting the vulnerable AJAX endpoint. When an authenticated WordPress administrator visits the malicious page or clicks the link while logged into the affected WordPress site, the forged request is automatically submitted with the administrator's session credentials.

The vulnerability can be exploited through various social engineering techniques including phishing emails, malicious advertisements, or compromised websites. The attack does not require the attacker to have any authentication credentials on the target WordPress installation.

The vulnerable code is located at line 390 in the Init.php file within the plugin's Admin directory. Technical details can be found in the WordPress Plugin Code Reference and the GitHub Plugin Code Reference.

Detection Methods for CVE-2026-2023

Indicators of Compromise

  • Unexpected modifications to custom plugin entries in the WP Plugin Info Card settings
  • Access logs showing POST requests to the ajax_save_custom_plugin endpoint from external referrers
  • New or modified plugin card entries that administrators did not create
  • Suspicious HTTP referrer headers in requests to WordPress AJAX endpoints

Detection Strategies

  • Monitor WordPress AJAX requests for ajax_save_custom_plugin actions with unusual or external referrer headers
  • Implement Web Application Firewall (WAF) rules to detect and block CSRF attack patterns
  • Review server access logs for suspicious patterns of admin-level AJAX requests following visits to external URLs
  • Deploy WordPress security plugins that can detect missing nonce validation in plugin code

Monitoring Recommendations

  • Enable detailed logging for WordPress AJAX endpoints and administrative actions
  • Configure alerts for bulk or unusual modifications to plugin settings
  • Implement Content Security Policy (CSP) headers to restrict form submissions to trusted origins
  • Monitor for new or modified custom plugin entries that correlate with administrator browsing activity

How to Mitigate CVE-2026-2023

Immediate Actions Required

  • Update WP Plugin Info Card plugin to a patched version beyond 6.2.0 immediately
  • Review recent changes to custom plugin entries for any unauthorized modifications
  • Audit WordPress administrator activity logs for suspicious AJAX requests
  • Consider temporarily disabling the WP Plugin Info Card plugin until patched

Patch Information

A fix has been released addressing the CSRF vulnerability. The patch restores proper nonce validation in the ajax_save_custom_plugin() function. Details of the code changes can be reviewed in the WordPress Plugin Changeset. Additional vulnerability information is available in the Wordfence Vulnerability Report.

Workarounds

  • Restrict WordPress admin panel access to trusted IP addresses using .htaccess or server configuration
  • Implement additional CSRF protection at the web server or WAF level
  • Train administrators to avoid clicking links from untrusted sources while logged into WordPress
  • Consider using browser extensions that protect against CSRF attacks for administrative sessions
bash
# Example .htaccess configuration to restrict wp-admin access by IP
<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteCond %{REQUEST_URI} ^/wp-admin
  RewriteCond %{REMOTE_ADDR} !^192\.168\.1\.100$
  RewriteCond %{REMOTE_ADDR} !^10\.0\.0\.50$
  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
  • 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
  • GitHub Plugin Code Reference

  • WordPress Plugin File History

  • WordPress Plugin Code Reference

  • WordPress Plugin Changeset

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2025-39417: WordPress Redirect Plugin CSRF Vulnerability

  • CVE-2026-6451: WordPress CMS für Motorrad Plugin CSRF Flaw

  • CVE-2026-6396: WordPress 3F Plugin CSRF Vulnerability

  • CVE-2026-4131: WP Responsive Popup + Optin 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