osquery-1/specs/smbios_tables.table
2015-07-15 23:23:42 -07:00

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")