CVE/CVE-2025-3052: Difference between revisions

From Omnia
< CVE
Jump to navigation Jump to search
No edit summary
Line 15: Line 15:


  Get-HotFix | Where-Object {$_.HotFixID -match "KB5060*"}
  Get-HotFix | Where-Object {$_.HotFixID -match "KB5060*"}
Windows 10 LTSC:
<pre>
PS C:\> Get-HotFix | Where-Object {$_.HotFixID -match "KB5060*"}
Source        Description      HotFixID      InstalledBy          InstalledOn
------        -----------      --------      -----------          -----------
MYSYSTEM1-... Security Update  KB5065429    NT AUTHORITY\SYSTEM  11/15/2025 12:00:00 AM
MYSYSTEM1-... Update          KB5063979    NT AUTHORITY\SYSTEM  9/26/2025 12:00:00 AM
</pre>


== keywords ==
== keywords ==

Revision as of 08:17, 15 November 2025

CVE-2025-3052 – UEFI Secure Boot Bypass Vulnerability

What is CVE-2025-3052?
CVE-2025-3052 is an arbitrary write vulnerability in UEFI firmware applications signed by Microsoft (e.g., DTBios, BiosFlashShell).  It allows attackers to manipulate NVRAM variables and bypass Secure Boot, enabling execution of unauthorized code during system startup.

Check-UEFISecureBootVariables

cjee21/Check-UEFISecureBootVariables: PowerShell scripts to check the UEFI KEK, DB and DBX Secure Boot variables.
https://github.com/cjee21/Check-UEFISecureBootVariables
Get-SecureBootUEFI
https://learn.microsoft.com/en-us/powershell/module/secureboot/get-securebootuefi?view=windowsserver2025-ps

Quick Windows Patch Check

Get-HotFix | Where-Object {$_.HotFixID -match "KB5060*"}

Windows 10 LTSC:

PS C:\> Get-HotFix | Where-Object {$_.HotFixID -match "KB5060*"}

Source        Description      HotFixID      InstalledBy          InstalledOn
------        -----------      --------      -----------          -----------
MYSYSTEM1-... Security Update  KB5065429     NT AUTHORITY\SYSTEM  11/15/2025 12:00:00 AM
MYSYSTEM1-... Update           KB5063979     NT AUTHORITY\SYSTEM  9/26/2025 12:00:00 AM

keywords