mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
e205458be0
Summary: This PR is the result of the discussion in a previous PR (#5348) after we determined account_policy_data was the wrong place for the column. Add `is_hidden` column to the users and groups tables in macOS. `is_hidden` is populated by looking for the `dsAttrTypeNative:IsHidden` attribute in the OpenDirectory record for the user/group if the value is `1`, `True`, or `Yes` is_hidden is 1. If the value is anything else it's set to 0. Invalid values have the same affect as the attribute not existing at all. The `dsAttrTypeNative:IsHidden` attribute controls whether a user account is is visible in the preferences panel similar to having a uid < 500. One test failed when running buck test: ``` ====STANDARD OUT==== tests/integration/tables/helper.cpp:159: Failure Value of: boost::get<CustomCheckerType>(validator)(value) Actual: false Expected: true Custom validator of the column "mask" with value "" failed ``` This also fails when I ran the test on the current experimental branch as well. Important to note I had to remove the optimization on both the user and group tables that just called `getpwnam` if the query specified the `uid` or `gid` since the struct returned doesn't contain the `IsHidden` attribute. I'm not sure if or how much this will affect performance since I wasn't able to get the profiling to work with the new version (very likely I'm just doing it incorrectly). Pull Request resolved: https://github.com/facebook/osquery/pull/5368 Differential Revision: D13862375 Pulled By: akindyakov fbshipit-source-id: 1fec88a6ba71884f7e611e1d96ea00630c5be655
27 lines
1.1 KiB
Plaintext
27 lines
1.1 KiB
Plaintext
table_name("users")
|
|
description("Local user accounts (including domain accounts that have logged on locally (Windows)).")
|
|
schema([
|
|
Column("uid", BIGINT, "User ID", index=True),
|
|
Column("gid", BIGINT, "Group ID (unsigned)"),
|
|
Column("uid_signed", BIGINT, "User ID as int64 signed (Apple)"),
|
|
Column("gid_signed", BIGINT, "Default group ID as int64 signed (Apple)"),
|
|
Column("username", TEXT, "Username", additional=True),
|
|
Column("description", TEXT, "Optional user description"),
|
|
Column("directory", TEXT, "User's home directory"),
|
|
Column("shell", TEXT, "User's configured default shell"),
|
|
Column("uuid", TEXT, "User's UUID (Apple) or SID (Windows)"),
|
|
])
|
|
extended_schema(WINDOWS, [
|
|
Column("type", TEXT, "Whether the account is roaming (domain), local, or a system profile"),
|
|
])
|
|
|
|
extended_schema(DARWIN, [
|
|
Column("is_hidden", INTEGER, "IsHidden attribute set in OpenDirectory")
|
|
])
|
|
implementation("users@genUsers")
|
|
examples([
|
|
"select * from users where uid = 1000",
|
|
"select * from users where username = 'root'",
|
|
"select count(*) from users u, user_groups ug where u.uid = ug.uid",
|
|
])
|