Security Vulnerability Report
中文
CVE-2026-41100 CVSS 4.4 MEDIUM

CVE-2026-41100

Published: 2026-05-12 18:17:22
Last Modified: 2026-05-13 15:34:53

Description

Improper access control in M365 Copilot allows an authorized attacker to perform spoofing locally.

CVSS Details

CVSS Score
4.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Microsoft 365 Copilot < 2026-05 Security Update

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Conceptual PoC for Local Spoofing in M365 Copilot # Requires local access and low privileges import os import time def exploit_cve_2026_41100(): # Simulate payload injection into the Copilot local process print("[+] Initiating local access control bypass...") # In a real scenario, this might involve manipulating local files or IPC target_process = "MsCopilot.exe" # Check if process exists (simulated) if target_process: print(f"[*] Target {target_process} detected.") # Craft the spoofing payload # This payload intends to trick the system into accepting unauthorized commands payload = { "action": "spoof_identity", "user_context": "admin_override", "source": "local_untrusted" } print(f"[*] Sending payload: {payload}") # Simulate execution # os.system(f"tasklist | findstr {target_process}") print("[+] Exploit successful: Spoofing achieved via improper access control.") else: print("[-] Target process not found.") if __name__ == "__main__": exploit_cve_2026_41100()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-41100", "sourceIdentifier": "[email protected]", "published": "2026-05-12T18:17:21.507", "lastModified": "2026-05-13T15:34:52.573", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper access control in M365 Copilot allows an authorized attacker to perform spoofing locally."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", "baseScore": 4.4, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-284"}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-41100", "source": "[email protected]"}]}}