mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Closes: #19271 Closes: #19286 Changes: - Updated the example in the schema folder readme - Updated the block scalar used in Fleet's osquery override documentation (`>-` » `|-`) and removed extra newlines - Updated the block scalar used in URLs used to create new yaml override files - Regenerated osqeury_fleet_schema.json
16 lines
663 B
YAML
16 lines
663 B
YAML
name: firefox_addons
|
|
description: Firefox browser [add-ons](https://addons.mozilla.org/en-US/firefox/) (plugins).
|
|
examples: |-
|
|
```
|
|
SELECT * FROM users CROSS JOIN firefox_addons USING (uid);
|
|
```
|
|
|
|
See Firefox extensions by user as well as information about their creator and
|
|
automatic update status.
|
|
|
|
```
|
|
SELECT u.username, f.identifier, f.creator, f.description, f.version, f.autoupdate FROM users u CROSS JOIN firefox_addons f USING (uid) WHERE f.active='1';
|
|
```
|
|
notes: Querying this table requires joining against the `users` table. [Learn more](https://fleetdm.com/guides/osquery-consider-joining-against-the-users-table)
|
|
columns:
|
|
- name: uid
|