osquery-1/osquery/tables/specs/x/users.table

14 lines
422 B
Plaintext
Raw Normal View History

2014-10-09 19:50:34 +00:00
table_name("users")
description("Track users that may log in to the system or other system identities that own running processes.")
2014-10-09 19:50:34 +00:00
schema([
2014-11-12 18:27:44 +00:00
Column("uid", BIGINT),
Column("gid", BIGINT),
Column("uid_signed", BIGINT),
Column("gid_signed", BIGINT),
2014-11-12 18:27:44 +00:00
Column("username", TEXT),
Column("description", TEXT),
Column("directory", TEXT),
Column("shell", TEXT),
2014-10-09 19:50:34 +00:00
])
implementation("users@genUsers")