osquery-1/specs/darwin/xprotect_meta.table
Teddy Reed b28c4d8d0f Introduce table options (#2101)
Table options includes a change to the Registry::call API for TablePlugins.
When requesting route information or the 'columns' action, a new 'op' key is included.
2016-05-18 12:23:52 -07:00

11 lines
466 B
Plaintext

table_name("xprotect_meta")
description("Database of the machine's XProtect browser-related signatures.")
schema([
Column("identifier", TEXT, "Browser plugin or extension identifier"),
Column("type", TEXT, "Either plugin or extension"),
Column("developer_id", TEXT, "Developer identity (SHA1) of extension"),
Column("min_version", TEXT, "The minimum allowed plugin version."),
])
attributes(cacheable=True)
implementation("xprotect@genXProtectMeta")