fleet/schema/tables/browser_plugins.yml
Mike McNeil bf1c894e7d
Hide browser_plugins table (#8669)
It is not supported in most modern browsers and we think it is more osquerious-user-confusing than it is potentially security-helpful .
2022-12-07 08:23:20 -06:00

13 lines
328 B
YAML

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 ;
```