CVE/CVE-2025-3052: Difference between revisions

From Omnia
< CVE
Jump to navigation Jump to search
Line 16: Line 16:
  Get-HotFix | Where-Object {$_.HotFixID -match "KB5060*"}
  Get-HotFix | Where-Object {$_.HotFixID -match "KB5060*"}


Windows 10 LTSC:
=== Windows 10 LTSC Sample ===
<pre>
<pre>
PS C:\> Get-HotFix | Where-Object {$_.HotFixID -match "KB5060*"}
PS C:\> Get-HotFix | Where-Object {$_.HotFixID -match "KB5060*"}
Line 22: Line 22:
Source        Description      HotFixID      InstalledBy          InstalledOn
Source        Description      HotFixID      InstalledBy          InstalledOn
------        -----------      --------      -----------          -----------
------        -----------      --------      -----------          -----------
MYSYSTEM1-... Security Update  KB5065429    NT AUTHORITY\SYSTEM  11/15/2025 12:00:00 AM
MYWIN10      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
MYWIN10      Update          KB5063979    NT AUTHORITY\SYSTEM  9/26/2025 12:00:00 AM
</pre>
 
=== Windows 11 Sample ===
 
<pre>
PS C:\Users\24964> Get-HotFix | Where-Object {$_.HotFixID -match "KB5060*"}
 
Source        Description      HotFixID      InstalledBy          InstalledOn
------        -----------      --------      -----------          -----------
MYWIN11      Update          KB5067931    NT AUTHORITY\SYSTEM  10/29/2025 12:00:00 AM
MYWIN11      Security Update  KB5068861    NT AUTHORITY\SYSTEM  11/13/2025 12:00:00 AM
MYWIN11      Update          KB5067035    NT AUTHORITY\SYSTEM  10/29/2025 12:00:00 AM
</pre>
</pre>


== keywords ==
== keywords ==

Revision as of 08:21, 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 Sample

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

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

Windows 11 Sample

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

Source        Description      HotFixID      InstalledBy          InstalledOn
------        -----------      --------      -----------          -----------
MYWIN11       Update           KB5067931     NT AUTHORITY\SYSTEM  10/29/2025 12:00:00 AM
MYWIN11       Security Update  KB5068861     NT AUTHORITY\SYSTEM  11/13/2025 12:00:00 AM
MYWIN11       Update           KB5067035     NT AUTHORITY\SYSTEM  10/29/2025 12:00:00 AM

keywords