mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-06 09:35:20 +00:00
14 lines
653 B
Plaintext
14 lines
653 B
Plaintext
table_name("platform_info")
|
|
description("Information about EFI/UEFI/ROM and platform/boot.")
|
|
schema([
|
|
Column("vendor", TEXT, "Platform code vendor"),
|
|
Column("version", TEXT, "Platform code version"),
|
|
Column("date", TEXT, "Self-reported platform code update date"),
|
|
Column("revision", TEXT, "BIOS major and minor revision"),
|
|
Column("address", TEXT, "Relative address of firmware mapping"),
|
|
Column("size", TEXT, "Size in bytes of firmware"),
|
|
Column("volume_size", INTEGER, "(Optional) size of firmware volume"),
|
|
Column("extra", TEXT, "Platform-specific additional information"),
|
|
])
|
|
implementation("system@genPlatformInfo")
|