mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
18 lines
798 B
Plaintext
18 lines
798 B
Plaintext
table_name("browser_plugins")
|
|
description("All C/NPAPI browser plugin details for all users.")
|
|
schema([
|
|
Column("uid", BIGINT, "The local user that owns the plugin",
|
|
additional=True),
|
|
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"),
|
|
ForeignKey(column="uid", table="users")
|
|
])
|
|
attributes(user_data=True)
|
|
implementation("applications/browser_plugins@genBrowserPlugins")
|