mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 10:23:54 +00:00
12 lines
361 B
Plaintext
12 lines
361 B
Plaintext
table_name("acpi_tables")
|
|
description("Firmware ACPI functional table common metadata and content.")
|
|
schema([
|
|
Column("name", TEXT, "ACPI table name"),
|
|
Column("size", INTEGER, "Size of compiled table data"),
|
|
Column("md5", TEXT, "MD5 hash of table content"),
|
|
])
|
|
implementation("system/acpi_tables@genACPITables")
|
|
fuzz_paths([
|
|
"/sys/firmware/",
|
|
])
|