mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
11 lines
312 B
YAML
11 lines
312 B
YAML
|
name: system_extensions
|
||
|
examples: >-
|
||
|
Identify system extensions that are not managed via MDM and see their
|
||
|
signature status.
|
||
|
|
||
|
```
|
||
|
|
||
|
SELECT se.identifier, se.bundle_path, se.category, se.state, s.signed FROM system_extensions se JOIN signature s on s.path = se.bundle_path WHERE se.mdm_managed='0';
|
||
|
|
||
|
```
|