CVEs
CVEs for PowerShell Universal.
CVE-2025-54552 - 7/25/2025 - Information disclosure
Description
Workaround
New-UDPage -Name 'Variables' -Icon (New-UDIcon -Icon 'SquareRootVariable') -Content {
$Variables = Get-Variable | Where-Object Name -ne PSUConnectionString | ForEach-Object {
[PSCustomObject]@{
Name = $_.Name
Value = if ($_.Value -eq $null) { "$null" } else { $_.Value.ToString() }
Description = $_.Description
}
}
New-UDTable -Title 'Variables' -Data $Variables -Columns @(
New-UDTableColumn -Property Name -Title 'Name'
New-UDTableColumn -Property Value -Title 'Value'
New-UDTableColumn -Property Description -Title 'Description'
) -ShowPagination -Dense -PageSize 10
}CVE-TBD - 2/18/2025 - Incorrect Access Controls
Description
CVSS v4.0 Score: 9.8 High
CVE-2025-26792 - 1/29/2025 - Information disclosure
Description
CVSS v4.0 Score: 5.4 / Medium
CVE-2024-50616 - 10/17/2024 - Privilege escalation and information disclosure
Description
CVSS v4.0 Score: 7.4 / High
Last updated
Was this helpful?