CVE-2025-14852
CSRF Vulnerability in MDirector Newsletter Plugin Allows Settings Modification
Publication date: 2026-02-14
Last updated on: 2026-04-08
Assigner: Wordfence
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| mdirector | newsletter | to 4.5.8 (inc) |
| mdirector | mdirector_newsletter | to 4.5.8 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-352 | The web application does not, or cannot, sufficiently verify whether a request was intentionally provided by the user who sent the request, which could have originated from an unauthorized actor. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
The MDirector Newsletter plugin for WordPress, up to and including version 4.5.8, is vulnerable to a Cross-Site Request Forgery (CSRF) attack. This vulnerability exists because the plugin's mdirectorNewsletterSave function lacks nonce verification, which is a security measure to confirm that requests are legitimate. As a result, an unauthenticated attacker can trick a site administrator into performing an action, such as clicking a malicious link, which then allows the attacker to update the plugin's settings without proper authorization.
How can this vulnerability impact me? :
This vulnerability allows an attacker to change the settings of the MDirector Newsletter plugin without authentication by exploiting the administrator's session. If an administrator is tricked into clicking a malicious link, the attacker can modify plugin configurations, potentially disrupting newsletter management or altering mailing lists and campaigns. While the vulnerability does not directly lead to data disclosure or system compromise, it can undermine the integrity of the newsletter system and cause unauthorized changes.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
[{'type': 'paragraph', 'content': 'This vulnerability involves a missing nonce verification in the mdirectorNewsletterSave function of the MDirector Newsletter WordPress plugin, allowing Cross-Site Request Forgery (CSRF). Detection would involve monitoring for unauthorized POST requests attempting to update plugin settings without proper nonce tokens.'}, {'type': 'paragraph', 'content': "Since the vulnerability is related to forged requests targeting the plugin's settings update, you can detect suspicious activity by inspecting HTTP POST requests to the WordPress admin area that invoke the mdirectorNewsletterSave function or related endpoints."}, {'type': 'list_item', 'content': 'Use web server logs or network monitoring tools to filter POST requests to the WordPress admin URL paths associated with the MDirector Newsletter plugin.'}, {'type': 'list_item', 'content': 'Check for missing or invalid WordPress nonces in these POST requests, which are normally included to prevent CSRF.'}, {'type': 'list_item', 'content': "Example command to search Apache logs for POST requests to the plugin's admin PHP file (adjust path as needed):"}, {'type': 'paragraph', 'content': "grep 'POST' /var/log/apache2/access.log | grep 'class-mdirector-newsletter-admin.php'"}, {'type': 'list_item', 'content': "Use WordPress security plugins or custom scripts to verify nonce presence and validity in requests related to the plugin's settings."}] [2]
What immediate steps should I take to mitigate this vulnerability?
To mitigate this Cross-Site Request Forgery vulnerability in the MDirector Newsletter plugin, immediate steps include:
- Update the MDirector Newsletter plugin to a version later than 4.5.8 where the nonce verification issue is fixed, if such a version is available.
- If an update is not available, temporarily disable or deactivate the MDirector Newsletter plugin to prevent exploitation.
- Restrict access to the WordPress admin area to trusted IP addresses or use additional authentication layers to reduce risk.
- Educate site administrators to avoid clicking on suspicious links that could trigger forged requests.
- Monitor logs for suspicious POST requests attempting to change plugin settings.