mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
13 lines
486 B
Plaintext
13 lines
486 B
Plaintext
table_name("authorized_keys")
|
|
description("A line-delimited authorized_keys table.")
|
|
schema([
|
|
Column("uid", BIGINT, "The local owner of authorized_keys file",
|
|
additional=True),
|
|
Column("algorithm",TEXT,"algorithim of key"),
|
|
Column("key", TEXT, "parsed authorized keys line"),
|
|
Column("key_file", TEXT, "Path to the authorized_keys file"),
|
|
ForeignKey(column="uid", table="users"),
|
|
])
|
|
attributes(user_data=True)
|
|
implementation("authorized_keys@getAuthorizedKeys")
|