Last active
November 12, 2024 08:50
-
-
Save mattifestation/1a0f93714ddbabdbac4ad6bcc0f311f3 to your computer and use it in GitHub Desktop.
Parses signature data from the pk, kek, db, and dbx UEFI variables.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Get-UEFIDatabaseSigner { | |
<# | |
.SYNOPSIS | |
Dumps signature or hash information for whitelisted ('db' variable) or blacklisted ('dbx' variable) UEFI bootloaders. | |
.DESCRIPTION | |
Author: Matthew Graeber (@mattifestation) | |
License: BSD 3-Clause | |
.PARAMETER Variable | |
Specifies a UEFI variable, an instance of which is returned by calling the Get-SecureBootUEFI cmdlet. Only 'db' and 'dbx' are supported. | |
.EXAMPLE | |
Get-SecureBootUEFI -Name db | Get-UEFIDatabaseSigner | |
.EXAMPLE | |
Get-SecureBootUEFI -Name dbx | Get-UEFIDatabaseSigner | |
.EXAMPLE | |
Get-SecureBootUEFI -Name pk | Get-UEFIDatabaseSigner | |
.EXAMPLE | |
Get-SecureBootUEFI -Name kek | Get-UEFIDatabaseSigner | |
.INPUTS | |
Microsoft.SecureBoot.Commands.UEFIEnvironmentVariable | |
Accepts the output of Get-SecureBootUEFI over the pipeline. | |
.OUTPUTS | |
UEFIDBXHash | |
Outputs a custom object consisting of banned SHA256 hashes and the respective "owner" of each hash. "77fa9abd-0359-4d32-bd60-28f4e78f784b" refers to Microsoft as the owner. | |
#> | |
[CmdletBinding()] | |
param ( | |
[Parameter(Mandatory, ValueFromPipeline)] | |
[ValidateScript({ ($_.GetType().Fullname -eq 'Microsoft.SecureBoot.Commands.UEFIEnvironmentVariable') -and (($_.Name -eq 'kek') -or ($_.Name -eq 'pk') -or ($_.Name -eq 'db') -or ($_.Name -eq 'dbx')) })] | |
$Variable | |
) | |
$SignatureTypeMapping = @{ | |
'C1C41626-504C-4092-ACA9-41F936934328' = 'EFI_CERT_SHA256_GUID' # Most often used for dbx | |
'A5C059A1-94E4-4AA7-87B5-AB155C2BF072' = 'EFI_CERT_X509_GUID' # Most often used for db | |
} | |
try { | |
$MemoryStream = New-Object -TypeName IO.MemoryStream -ArgumentList @(,$Variable.Bytes) | |
$BinaryReader = New-Object -TypeName IO.BinaryReader -ArgumentList $MemoryStream, ([Text.Encoding]::Unicode) | |
} catch { | |
throw $_ | |
return | |
} | |
# What follows will be an array of EFI_SIGNATURE_LIST structs | |
while ($BinaryReader.PeekChar() -ne -1) { | |
$SignatureType = $SignatureTypeMapping[([Guid][Byte[]] $BinaryReader.ReadBytes(16)).Guid] | |
$SignatureListSize = $BinaryReader.ReadUInt32() | |
$SignatureHeaderSize = $BinaryReader.ReadUInt32() | |
$SignatureSize = $BinaryReader.ReadUInt32() | |
$SignatureHeader = $BinaryReader.ReadBytes($SignatureHeaderSize) | |
# 0x1C is the size of the EFI_SIGNATURE_LIST header | |
$SignatureCount = ($SignatureListSize - 0x1C) / $SignatureSize | |
$Signature = 1..$SignatureCount | ForEach-Object { | |
$SignatureDataBytes = $BinaryReader.ReadBytes($SignatureSize) | |
$SignatureOwner = [Guid][Byte[]] $SignatureDataBytes[0..15] | |
switch ($SignatureType) { | |
'EFI_CERT_SHA256_GUID' { | |
$SignatureData = ([Byte[]] $SignatureDataBytes[0x10..0x2F] | ForEach-Object { $_.ToString('X2') }) -join '' | |
} | |
'EFI_CERT_X509_GUID' { | |
$SignatureData = New-Object Security.Cryptography.X509Certificates.X509Certificate2 -ArgumentList @(,([Byte[]] $SignatureDataBytes[16..($SignatureDataBytes.Count - 1)])) | |
} | |
} | |
[PSCustomObject] @{ | |
PSTypeName = 'EFI.SignatureData' | |
SignatureOwner = $SignatureOwner | |
SignatureData = $SignatureData | |
} | |
} | |
[PSCustomObject] @{ | |
PSTypeName = 'EFI.SignatureList' | |
SignatureType = $SignatureType | |
Signature = $Signature | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://gist.github.com/mattifestation/1a0f93714ddbabdbac4ad6bcc0f311f3#file-uefisecdatabaseparser-ps1