Security Vulnerability Report
中文
CVE-2026-26143 CVSS 7.8 HIGH

CVE-2026-26143

Published: 2026-04-14 18:16:46
Last Modified: 2026-04-27 19:59:18

Description

Improper input validation in Microsoft PowerShell allows an unauthorized attacker to bypass a security feature locally.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:microsoft:powershell:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:microsoft:powershell:*:*:*:*:*:*:*:* - VULNERABLE
Microsoft PowerShell 7.x (具体受影响版本请参考官方安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2026-26143: Microsoft PowerShell Security Feature Bypass # Description: Demonstrates how improper input validation can lead to a security bypass. function Invoke-CVE202626143 { param ( [string]$UserInput ) # Simulating the vulnerable scenario where input is not strictly validated # The attacker crafts input that includes escape characters or logical bypasses if ($UserInput -match "--bypass-check") { Write-Host "[+] Security check bypassed via crafted input." # In a real exploit, this would execute restricted code Start-Process powershell.exe -ArgumentList "/c echo 'Restricted Command Executed'" } else { Write-Host "[-] Normal execution flow." } } # Example usage Invoke-CVE202626143 -UserInput "normal_data" Invoke-CVE202626143 -UserInput "--bypass-check"

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-26143", "sourceIdentifier": "[email protected]", "published": "2026-04-14T18:16:45.620", "lastModified": "2026-04-27T19:59:18.223", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper input validation in Microsoft PowerShell allows an unauthorized attacker to bypass a security feature locally."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-20"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:powershell:*:*:*:*:*:*:*:*", "versionStartIncluding": "7.4", "versionEndExcluding": "7.4.14", "matchCriteriaId": "829CDFB8-FB01-4E66-85D8-33F093A907B9"}, {"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:powershell:*:*:*:*:*:*:*:*", "versionStartIncluding": "7.5", "versionEndExcluding": "7.5.5", "matchCriteriaId": "EF18DEDE-5231-4109-BEE2-E0DBF184ABEC"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-26143", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}