CVE-2026-4302
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedThe WowOptin: Next-Gen Popup Maker plugin for WordPress is vulnerable to Server-Side Request Forgery in all versions up to, and including, 1.4.29. This is due to the plugin exposing a publicly accessible REST API endpoint (optn/v1/integration-action) with a permission_callback of __return_true that passes user-supplied URLs directly to wp_remote_get() and wp_remote_post() in the Webhook::add_subscriber() method without any URL validation or restriction. The plugin does not use wp_safe_remote_get/post which provide built-in SSRF protection. This makes it possible for unauthenticated attackers to make web requests to arbitrary locations originating from the web application, which can be used to query and modify information from internal services.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceThe WowOptin WordPress plugin exposes a REST API endpoint (optn/v1/integration-action) accessible to anyone without authentication. This endpoint passes user-supplied URLs directly to wp_remote_get() and wp_remote_post() without validation. Because the plugin uses the unsafe wp_remote_* functions instead of wp_safe_remote_* variants, attackers can force the server to make requests to internal network resources, internal services, or arbitrary external locations.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- None
- User interaction
- None
- Scope
- Changed
- Confidentiality
- Low
- Integrity
- Low
- Availability
- None
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Verify WowOptin plugin is installedNavigate to WordPress admin > Plugins, or inspect /wp-content/plugins/ directory for wowoptin folder, or query site via WP-CLI: wp plugin list --name=wowoptinAffected if Plugin is present in the WordPress installation
-
Determine installed WowOptin versionCheck plugin header in main file (wp-content/plugins/wowoptin/wowoptin.php) for Version comment, or query via WP-CLI: wp plugin get wowoptin --field=versionAffected if Version is unknown, unpatched, or lower than patched version (compare against available patch when released)
-
Confirm REST API endpoint is exposedSend unauthenticated request to /wp-json/optn/v1/integration-action (e.g., curl -X POST https://TARGET/wp-json/optn/v1/integration-action -d '{"url":"http://example.com"}')Affected if Endpoint returns valid JSON response without requiring authentication (401/403 not returned)
-
Check plugin code for unsafe wp_remote usageInspect plugin file containing the vulnerable endpoint (look for wp_remote_get or wp_remote_post calls), or grep: grep -r "wp_remote_get\|wp_remote_post" /wp-content/plugins/wowoptin/Affected if Code uses wp_remote_get() or wp_remote_post() without wp_safe_remote_* variants and without URL validation on user input
User is affected if WowOptin plugin is installed AND the optn/v1/integration-action REST API endpoint responds to unauthenticated requests AND the plugin uses unsafe wp_remote_* functions without URL validation.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scopedRestrict the vulnerable REST API endpoint via proper authentication/authorization in the permission_callback, or update to a patched version when available. As defense-in-depth, replace wp_remote_get/post with wp_safe_remote_get/post to leverage WordPress's built-in SSRF protections.
WowOptin: Next-Gen Popup Maker version 1.4.30 or latest available version
- Log in to WordPress admin dashboard
- Navigate to Plugins > Installed Plugins
- Locate 'WowOptin: Next-Gen Popup Maker' in the plugin list
- Check the current installed version (should be 1.4.29 or below)
- Update the plugin to the latest available version (1.4.30 or later)
- Verify the update was successful and the plugin functions correctly
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation2.0 h
- Implementation3.0 h
- Testing3.0 h
- Review / QA2.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $2,800.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-4302 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-4302 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data