mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
The example queries that we provide for the `chrome_extensions` and `firefox_addons` table produce a syntax error because they use CROSS JOIN instead of INNER JOIN. --------- Co-authored-by: Eric <eashaw@sailsjs.com>
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 INNER 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
|