osquery-1/specs/darwin/smc_keys.table

14 lines
545 B
Plaintext
Raw Normal View History

2016-01-09 22:35:26 +00:00
table_name("smc_keys")
description("Apple's system management controller keys.")
schema([
Column("key", TEXT, "4-character key", additional=True, index=True),
2016-01-09 22:35:26 +00:00
Column("type", TEXT, "SMC-reported type literal type"),
Column("size", INTEGER, "Reported size of data in bytes"),
Column("value", TEXT, "A type-encoded representation of the key value"),
Column("hidden", INTEGER, "1 if this key is normally hidden, otherwise 0"),
])
implementation("smc_keys@genSMCKeys")
examples([
"select * from smc_keys where key = 'MOJO'",
])