osquery-1/specs/firefox_addons.table
Teddy Reed a105924804 Move specs to a top-level path, add query examples
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.
2015-06-03 10:39:05 -07:00

24 lines
1.1 KiB
Plaintext

table_name("firefox_addons")
description("Firefox browser extensions, webapps, and addons.")
schema([
Column("name", TEXT, "Addon display name"),
Column("identifier", TEXT, "Addon identifier"),
Column("creator", TEXT< "Addon-supported creator string"),
Column("type", TEXT, "Extension, addon, webapp"),
Column("version", TEXT, "Addon-supplied version string"),
Column("description", TEXT, "Addon-supplied description string"),
Column("source_url", TEXT, "URL that installed the addon"),
Column("visible", INTEGER, "1 if the addon is shown in browser else 0"),
Column("active", INTEGER, "1 if the addon is active else 0"),
Column("disabled", INTEGER,
"1 if the addon is application-disabled else 0"),
Column("autoupdate", INTEGER,
"1 if the addon applies background updates else 0"),
Column("native", INTEGER,
"1 if the addon includes binary components else 0"),
Column("location", TEXT, "Global, profile location"),
Column("path", TEXT, "Path to plugin bundle"),
])
implementation("applications/browser_firefox@genFirefoxAddons")