osquery-1/specs/posix/smbios_tables.table
2016-09-13 20:37:31 -07:00

16 lines
592 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")
fuzz_paths([
"/sys/firmware/efi/systab",
])