mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
4bea8a4c92
Related to: #14166 Changes: - updated the override column descriptions for the `system_info` and `chrome_extensions` tables to include the descriptions from the osquery schema.
111 lines
2.5 KiB
YAML
111 lines
2.5 KiB
YAML
name: chrome_extensions
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
- chrome
|
|
description: Installed extensions (plugins) for [Chromium-based](https://en.wikipedia.org/wiki/Chromium_(web_browser)) browsers, including [Google Chrome](https://en.wikipedia.org/wiki/Google_Chrome), [Edge](https://en.wikipedia.org/wiki/Microsoft_Edge), [Brave](https://en.wikipedia.org/wiki/Brave_(web_browser)), [Opera](https://en.wikipedia.org/wiki/Opera_(web_browser)), and [Yandex](https://en.wikipedia.org/wiki/Yandex_Browser).
|
|
examples: >-
|
|
List Chrome extensions by user and profile which have full access to HTTPS
|
|
browsing.
|
|
|
|
```
|
|
|
|
SELECT u.username, ce.name, ce.description, ce.version, ce.profile, ce.permissions FROM users u CROSS JOIN chrome_extensions ce USING (uid) WHERE ce.permissions LIKE '%%https://*/*%%';
|
|
|
|
```
|
|
columns:
|
|
- name: uid
|
|
requires_user_context: true
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
- name: profile
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
- name: profile_path
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
- name: referenced_identifier
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
- name: default_locale
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
- name: current_locale
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
- name: author
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
- name: persistent
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
- name: path
|
|
type: string
|
|
description: Path to extension folder. Defaults to '' on ChromeOS
|
|
- name: optional_permissions
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
- name: optional_permissions_json
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
- name: manifest_hash
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
- name: referenced
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
- name: from_webstore
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
- name: state
|
|
type: string
|
|
- name: install_time
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
- name: install_timestamp
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
- name: manifest_json
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
- name: key
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
notes: |
|
|
- On ChromeOS, this table requires the [fleetd Chrome extension](https://fleetdm.com/docs/using-fleet/chromeos).
|