fleet/schema/tables/browser_plugins.yml

13 lines
328 B
YAML
Raw Normal View History

name: browser_plugins
hidden: true
examples: >-
See classic browser plugins (C/NPAPI) installed by users. These plugins have
been deprecated for a long time, so this query will usually not return
anything.
```
SELECT bp.name, bp.identifier, bp.version FROM browser_plugins bp JOIN users u on bp.uid = u.uid ;
```