CVE-2026-86823 Overview
The Newsletter WordPress plugin before version 9.3.7 contains an open redirect vulnerability in its public subscription flow. The plugin fails to validate the destination URL after a subscription action completes. Unauthenticated attackers can redirect users to arbitrary external sites. The redirect also discloses a subscriber token that grants access to front-end actions tied to that subscriber record. The issue is tracked as CWE-601: URL Redirection to Untrusted Site.
Critical Impact
Attackers can craft phishing links that appear to originate from a trusted WordPress site and leak subscriber tokens to attacker-controlled destinations.
Affected Products
- The Newsletter WordPress plugin versions prior to 9.3.7
- WordPress sites running vulnerable installations of the plugin
- Subscriber records exposed through leaked tokens
Discovery Timeline
- 2026-09-16 - CVE-2026-86823 published to NVD
- 2026-09-17 - Last updated in NVD database
Technical Details for CVE-2026-86823
Vulnerability Analysis
The Newsletter plugin processes public subscription actions and then redirects the user to a destination URL provided in the request. The plugin does not verify that the destination points to the same site or a trusted allow-listed host. An unauthenticated attacker can supply any external URL as the redirect target.
During the redirect, the plugin appends the subscriber token to the outbound URL. That token authenticates subsequent subscriber-scoped actions on the front end, including profile changes and unsubscribe operations. Leaking the token to an attacker-controlled server transfers control of the subscriber record.
Root Cause
The root cause is missing destination validation on the post-subscription redirect. The plugin trusts the URL parameter supplied by the caller and constructs a redirect without an allow-list check, host comparison, or nonce binding. The subscriber token is appended to the redirect URL rather than kept server-side, so any external destination receives it in the Referer header or query string.
Attack Vector
Exploitation requires no authentication and no user interaction beyond following a crafted link. An attacker builds a subscription URL for a vulnerable Newsletter installation and sets the redirect parameter to an attacker-controlled domain. Victims who click the link complete the subscription action on the legitimate site, then get redirected to the attacker's page with the subscriber token attached. The attacker captures the token from server logs and replays it against the victim site to perform subscriber-scoped actions.
Refer to the WPScan Vulnerability Advisory for the parameter-level detail.
Detection Methods for CVE-2026-86823
Indicators of Compromise
- Outbound HTTP redirects from /?na= or Newsletter subscription endpoints to external domains not on an allow-list.
- Access log entries containing subscriber token parameters immediately before requests to unfamiliar external hosts.
- Spikes in subscription confirmations followed by referrals from suspicious domains in web analytics.
Detection Strategies
- Inspect WordPress access logs for Newsletter subscription requests that include a redirect or return URL parameter pointing to an external host.
- Correlate subscription actions with HTTP 30x responses whose Location header targets domains outside the site's own hostnames.
- Scan installed plugin inventories for newsletter versions below 9.3.7 and flag them for remediation.
Monitoring Recommendations
- Alert on repeated subscription requests originating from single IP addresses with varying redirect targets.
- Monitor for reuse of subscriber tokens from IP addresses that differ from the address that originally received them.
- Track referral traffic in web analytics for anomalous inbound patterns tied to newsletter workflows.
How to Mitigate CVE-2026-86823
Immediate Actions Required
- Update the Newsletter plugin to version 9.3.7 or later on all WordPress installations.
- Audit subscriber activity logs for suspicious profile changes or unsubscribe events performed via tokenized links.
- Rotate or invalidate subscriber tokens if evidence of exploitation is present.
Patch Information
The vendor addressed the issue in Newsletter plugin version 9.3.7 by validating the redirect destination after subscription actions. Site administrators should apply the update through the WordPress plugin manager or by installing the latest release from the plugin repository. See the WPScan Vulnerability Advisory for confirmation of the fixed version.
Workarounds
- Restrict access to Newsletter subscription endpoints via a web application firewall rule that strips external redirect parameters.
- Enforce a Referrer-Policy of no-referrer or same-origin at the site level to reduce token leakage through the Referer header.
- Disable public subscription forms until the plugin can be upgraded to 9.3.7.
# Example WP-CLI upgrade command
wp plugin update newsletter --version=9.3.7
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

