Skip to content

Instantly share code, notes, and snippets.

@Strykar
Last active October 2, 2024 01:48
Show Gist options
  • Save Strykar/5d57145962bb1bcc00ef52f380697e55 to your computer and use it in GitHub Desktop.
Save Strykar/5d57145962bb1bcc00ef52f380697e55 to your computer and use it in GitHub Desktop.
Extract TPM digests, remove quotes and create an EFI signature list
#!/bin/bash
# https://wiki.archlinux.org/title/Unified_Extensible_Firmware_Interface/Secure_Boot#Enrolling_Option_ROM_digests
digests=$(grep -o 'Digest: "[a-f0-9]\{64\}"' | sed 's/Digest: "//;s/"$//')
counter=1
: > OpROM.esl
for digest in ${digests}; do
output_file="OpROM${counter}.esl"
digest-to-efi-sig-list "${digest}" "$output_file"
cat "${output_file}" >> OpROM.esl
counter=$((counter + 1))
done
printf "Combined EFI signature list created in OpROM.esl"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment