From: Zbigniew Jędrzejewski-Szmek Date: Mon, 13 Nov 2023 09:41:52 +0000 (+0100) Subject: ukify: show .sbom sections as text X-Git-Tag: v255-rc2~33^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e87dec82bec6eff015b368b3c746810d684fc6af;p=thirdparty%2Fsystemd.git ukify: show .sbom sections as text There are draft proposals to embed SBOM metadata in the .sbom section of PE binaries [1], in the coSWID XML format. Some details of how this is actually implemented might change, but it seems very likely that both section name and it being text will stay. Let's show the section as text to make such binaries easier to inspect. ([1] recommends using 'objcopy -j .sbom' which isn't particularly readable.) Once there's more standarization of the actual format, we can add pretty-printing and/or syntax highlighting. [1] https://uefi.org/blog/firmware-sbom-proposal [2] https://www.ietf.org/archive/id/draft-ietf-sacm-coswid-21.html --- diff --git a/src/ukify/ukify.py b/src/ukify/ukify.py index 8006624f0a1..2ab9c5894ce 100755 --- a/src/ukify/ukify.py +++ b/src/ukify/ukify.py @@ -265,6 +265,7 @@ DEFAULT_SECTIONS_TO_SHOW = { '.pcrpkey' : 'text', '.pcrsig' : 'text', '.sbat' : 'text', + '.sbom' : 'text', } @dataclasses.dataclass