mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-06 09:35:20 +00:00
b28c4d8d0f
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.
11 lines
466 B
Plaintext
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")
|