mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
13 lines
544 B
Plaintext
13 lines
544 B
Plaintext
table_name("smbios_tables")
|
|
description("BIOS (DMI) structure common details and content.")
|
|
schema([
|
|
Column("number", INTEGER, "Table entry number"),
|
|
Column("type", INTEGER, "Table entry type"),
|
|
Column("description", TEXT, "Table entry description"),
|
|
Column("handle", INTEGER, "Table entry handle"),
|
|
Column("header_size", INTEGER, "Header size in bytes"),
|
|
Column("size", INTEGER, "Table entry size in bytes"),
|
|
Column("md5", TEXT, "MD5 hash of table entry"),
|
|
])
|
|
implementation("system/smbios_tables@genSMBIOSTables")
|