fleet/schema/tables/filevault_users.yml
Rachael Shaw 895d4bc2f7
Use "Fleet's agent (fleetd)" naming in the docs (#18138)
For #16512

---------

Co-authored-by: Eric <eashaw@sailsjs.com>
2024-04-29 11:12:03 -05:00

25 lines
No EOL
934 B
YAML

name: filevault_users
notes: This table is not a core osquery table. It is included as part of Fleet's agent ([fleetd](https://fleetdm.com/docs/get-started/anatomy#fleetd)).
description: Information on the users able to unlock the current boot volume if protected with FileVault.
platforms:
- darwin
evented: false
examples: >-
List the usernames able to unlock and boot a computer protected by FileVault, joined to
[users.username](http://fleetdm.com/tables/users) to obtain the description of the operating
system account that owns it.
```
SELECT fu.username, u.description FROM filevault_users fu JOIN users u ON fu.uuid=u.uuid;
```
columns:
- name: username
description: Username of the FileVault user.
required: false
type: text
- name: uuid
description: UUID of the FileVault user, which can be joined to [users.uuid](http://fleetdm.com/tables/users).
required: false
type: text