mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Fixes part of #29720.. Includes promoting some bolded to subheadings (in wireframe docs). --------- Co-authored-by: Sam Pfluger <108141731+Sampfluger88@users.noreply.github.com>
13 lines
525 B
YAML
13 lines
525 B
YAML
name: keychain_items
|
|
columns:
|
|
- name: created
|
|
description: Date item was created
|
|
examples: |-
|
|
Identify Macs that contain certificates related to Apple application signing
|
|
and notarization. (replace with your Apple Developer ID string)
|
|
|
|
```
|
|
SELECT * FROM keychain_items WHERE label LIKE '%8EHZ83LZNU%';
|
|
```
|
|
notes: |-
|
|
- This table should be used sparingly as it uses an [Apple API which occasionally corrupts the underlying certificate](https://github.com/fleetdm/fleet/issues/13065#issuecomment-1658849614).
|