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-2025-12172

CVE-2025-12172: Mailchimp WordPress Plugin CSRF Flaw

CVE-2025-12172 is a Cross-Site Request Forgery vulnerability in the Mailchimp List Subscribe Form plugin for WordPress that enables attackers to modify Mailchimp lists. This article covers technical details, affected versions, and mitigation.

Updated: May 15, 2026

CVE-2025-12172 Overview

CVE-2025-12172 is a Cross-Site Request Forgery (CSRF) vulnerability [CWE-352] affecting the Mailchimp List Subscribe Form plugin for WordPress. The flaw exists in all versions up to and including 2.0.0. The vulnerability stems from missing or incorrect nonce validation on the mailchimp_sf_change_list_if_necessary() function. Unauthenticated attackers can change the configured Mailchimp list by tricking a site administrator into clicking a crafted link or visiting a malicious page. Successful exploitation does not grant code execution but disrupts subscriber list configuration on affected WordPress sites.

Critical Impact

Unauthenticated attackers can alter the Mailchimp list associated with a WordPress site by inducing an authenticated administrator to perform a single click on an attacker-controlled link.

Affected Products

  • Mailchimp List Subscribe Form plugin for WordPress, all versions up to and including 2.0.0
  • WordPress sites with administrator users who can be socially engineered
  • Sites relying on Mailchimp List Subscribe Form for newsletter list management

Discovery Timeline

  • 2026-02-19 - CVE-2025-12172 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-12172

Vulnerability Analysis

The vulnerability is a classic CSRF flaw in a WordPress plugin's administrative function. The mailchimp_sf_change_list_if_necessary() function processes requests that modify the Mailchimp list bound to the site's subscribe form. WordPress provides a nonce mechanism designed to ensure that state-changing requests originate from legitimate, intentional user actions within the admin interface. The plugin either omits the nonce check or implements it incorrectly on this code path. As a result, the server accepts requests that lack proof of user intent.

An attacker hosts a page that issues a forged request to the vulnerable endpoint. When an authenticated WordPress administrator visits the page, the browser automatically attaches the session cookies, and the plugin processes the request as legitimate. The user-interaction requirement and the limited integrity impact reflect that exploitation depends on social engineering and only modifies plugin configuration.

Root Cause

The root cause is the absence of, or flawed implementation of, a WordPress nonce check inside mailchimp_sf_change_list_if_necessary(). Functions that change plugin state must validate a nonce using check_admin_referer() or wp_verify_nonce() along with a capability check. Without that validation, the function trusts that any incoming request from an authenticated browser session is legitimate.

Attack Vector

The attack is delivered over the network and requires user interaction. An attacker crafts an HTML page containing a form or image tag that targets the vulnerable plugin endpoint on a known WordPress site. The attacker lures a logged-in administrator to that page through phishing, a forum post, or a malicious comment. On page load, the administrator's browser submits the forged request with valid authentication cookies, and the plugin switches the active Mailchimp list. No credentials or prior site access are required by the attacker.

No public proof-of-concept code is referenced in the advisory. Technical details are available in the Wordfence Vulnerability Report and the WordPress Plugin Changeset.

Detection Methods for CVE-2025-12172

Indicators of Compromise

  • Unexpected changes to the configured Mailchimp list ID in the plugin settings without a corresponding administrator action in audit logs
  • HTTP POST or GET requests to admin.php or admin-ajax.php invoking mailchimp_sf_change_list_if_necessary with Referer headers pointing to external domains
  • Administrator session activity in web server logs that coincides with cross-origin referers shortly before list configuration changes

Detection Strategies

  • Compare current plugin configuration against a known-good baseline of the Mailchimp list identifier and flag deviations
  • Inspect web server access logs for requests to plugin admin endpoints that include external Referer headers or no referer at all
  • Review WordPress audit logs, where available, for plugin option updates that lack a matching administrator console session

Monitoring Recommendations

  • Forward WordPress and web server logs to a centralized logging or SIEM platform and alert on plugin option changes
  • Track wp_options table writes related to the Mailchimp List Subscribe Form plugin and correlate them with admin login events
  • Monitor outbound email subscription destinations to detect cases where new subscribers are routed to an unexpected Mailchimp list

How to Mitigate CVE-2025-12172

Immediate Actions Required

  • Update the Mailchimp List Subscribe Form plugin to the version published after the fix commit referenced in the WordPress plugin changeset
  • Verify and restore the correct Mailchimp list identifier in the plugin configuration if tampering is suspected
  • Require administrators to log out of WordPress sessions when not actively managing the site to reduce CSRF exposure

Patch Information

The fix is published in the WordPress plugin repository. The remediation adds proper nonce validation to the affected request handler. Review the WordPress Plugin Changeset for the exact code changes and install the patched release through the WordPress plugin manager.

Workarounds

  • Deactivate the Mailchimp List Subscribe Form plugin until the patched version is installed
  • Restrict administrative access to the WordPress dashboard using IP allowlists at the web server or WAF layer
  • Configure a web application firewall rule to block requests to the plugin endpoint that lack a same-origin Referer header
bash
# Example WAF rule concept to block cross-origin requests to the vulnerable endpoint
# Replace example.com with the protected site's hostname
SecRule REQUEST_URI "@contains mailchimp_sf_change_list_if_necessary" \
  "id:1012172,phase:1,deny,status:403,\
   chain,msg:'Block cross-origin CSRF to Mailchimp List Subscribe Form'"
  SecRule REQUEST_HEADERS:Referer "!@beginsWith https://example.com/"

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechMailchimp

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.02%

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

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2025-23675: MailChimp Import Plugin CSRF Vulnerability

  • CVE-2026-25430: Mailchimp Integration Auth Bypass Flaw

  • CVE-2026-1303: MailChimp Campaigns Auth Bypass Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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