keychain_acls

Applications that have ACL entries in the keychain.

Platform support

Please be aware that some queries can only be run against certain platforms. Below is a list of the supported platforms that this query supports. Zercurity will automatically pause queries from running if errors are detected. Running a query against an unsupported platform will result in the following error: no such table: keychain_acls

  • Mac OSX

Table schema

Name Type Description
keychain_path TEXT The path of the keychain
authorizations TEXT A space delimited set of authorization attributes
path TEXT The path of the authorized application
description TEXT The description included with the ACL entry
label TEXT An optional label tag that may be included with the keychain entry

Query examples

select label, description, authorizations, path, count(path) as c from keychain_acls where label != '' and path != '' group by label having c > 1;