CVE-2026-15299
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 Animation Addons for Elementor plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the 'weather_style' and 'move_direction' parameters of the Weather widget in all versions up to, and including, 2.6.3. This is due to insufficient output escaping in the Weather widget's render() function at widgets/weather.php:1246, where both settings values are placed into an HTML class attribute without esc_attr(). Elementor does not server-side validate widget SELECT control values against allowed options on save, so an authenticated attacker with Contributor-level access or above can submit a crafted save_builder AJAX request storing arbitrary values in the _elementor_data post meta. The stored payload renders unescaped on every frontend visit to the affected page (the Weather widget requires an OpenWeatherMap API key to reach the vulnerable output, which is the normal operational state for sites using this widget).
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 Animation Addons for Elementor plugin for WordPress is vulnerable to Stored Cross-Site Scripting in the Weather widget. Authenticated attackers with Contributor-level or higher access can inject arbitrary JavaScript via crafted save_builder AJAX requests that store malicious values in the _elementor_data post meta for the weather_style and move_direction parameters. These values render without escaping in HTML class attributes at widgets/weather.php:1246, causing the XSS to execute on every frontend visit.
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
- Low
- User interaction
- None
- Scope
- Changed
- Confidentiality
- Low
- Integrity
- Low
- Availability
- None
CVSS:3.1/AV:N/AC:L/PR:L/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.
-
Confirm Animation Addons for Elementor is installedIn WordPress admin, go to Plugins > Installed Plugins and locate 'Animation Addons for Elementor'. Note the installed version number.Affected if The plugin is installed and the version falls within the vulnerable range before the fix was applied.
-
Check for Weather widget usageQuery the WordPress database for posts containing the Weather widget configuration in _elementor_data meta: SELECT post_id FROM wp_postmeta WHERE meta_key = '_elementor_data' AND meta_value LIKE '%"widgetType":"animation-addons-weather%';Affected if Any post or page uses the Weather widget from this plugin, creating potential storage of malicious values.
-
Inspect weather widget rendering codeOpen widgets/weather.php in the plugin directory and locate line 1246 (or the render function for weather_style and move_direction). Check if esc_attr() is used when outputting these values in HTML class attributes.Affected if The code directly outputs weather_style or move_direction parameters into HTML class attributes without esc_attr() wrapping, indicating the vulnerability is present.
-
Examine stored _elementor_data for suspicious valuesQuery the _elementor_data meta for the weather widget and inspect the weather_style and move_direction values: SELECT meta_value FROM wp_postmeta WHERE meta_key = '_elementor_data' AND meta_value LIKE '%animation-addons-weather%'. Look for quotes, javascript:, or other XSS payloads in those fields.Affected if The stored values contain unescaped characters (quotes, angle brackets, or script keywords) in weather_style or move_direction parameters.
A user is affected if they have Animation Addons for Elementor installed with a vulnerable version, the Weather widget is in use, and the rendering code lacks esc_attr() escaping for weather_style and move_direction parameters in HTML class attributes.
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 · scopedUpgrade to the latest version of Animation Addons for Elementor which includes proper output escaping (esc_attr()) for the weather_style and move_direction parameters in the Weather widget render function. Alternatively, manually add esc_attr() wrapping around these parameters at line 1246 of widgets/weather.php.
Latest version after 2.6.3 (check WordPress plugin repository for current release)
- 1. Update the Animation Addons for Elementor plugin to the latest available version from the WordPress plugin repository
- 2. Navigate to Plugins > All Plugins in the WordPress admin dashboard
- 3. Locate Animation Addons for Elementor and click Update Now if an update is available
- 4. After updating, clear any caching plugins or server-side caches
- 5. Verify the Weather widget still functions correctly with the OpenWeatherMap API key
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation2.0 h
- Implementation1.0 h
- Testing2.0 h
- Review / QA1.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $1,696.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-15299 — 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-15299 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