mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
a105924804
1. Example queries will run with an (optional) integration test. 2. Fix bad accesses with OS X package BOMs 3. Move spec files from ./osquery/tables/specs to ./specs 4. Remove server parsers (netlib) from client builds.
14 lines
638 B
Plaintext
14 lines
638 B
Plaintext
table_name("browser_plugins")
|
|
description("All C/NPAPI browser plugin details for all users.")
|
|
schema([
|
|
Column("name", TEXT, "Plugin display name"),
|
|
Column("identifier", TEXT, "Plugin identifier"),
|
|
Column("version", TEXT, "Plugin short version"),
|
|
Column("sdk", TEXT, "Build SDK used to compile plugin"),
|
|
Column("description", TEXT, "Plugin description text"),
|
|
Column("development_region", TEXT, "Plugin language-localization"),
|
|
Column("native", INTEGER, "Plugin requires native execution"),
|
|
Column("path", TEXT, "Path to plugin bundle"),
|
|
])
|
|
implementation("applications/browser_plugins@genBrowserPlugins")
|