account_policy_data¶
Additional OS X user account data from the AccountPolicy section of OpenDirectory.
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: account_policy_data
Mac OSX
Table schema¶
Name |
Type |
Description |
---|---|---|
uid |
BIGINT |
User ID |
creation_time |
DOUBLE |
When the account was first created |
failed_login_count |
BIGINT |
The number of times the user failed to login with the correct password. Resets after a correct password is entered |
failed_login_timestamp |
DOUBLE |
The time of the last failed login attempt. Resets after a correct password is entered |
password_last_set_time |
DOUBLE |
The time the password was last changed |
Query examples¶
select * from users join account_policy_data using (uid)