mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
b28c4d8d0f
Table options includes a change to the Registry::call API for TablePlugins. When requesting route information or the 'columns' action, a new 'op' key is included.
11 lines
354 B
Plaintext
11 lines
354 B
Plaintext
table_name("suid_bin")
|
|
description("suid binaries in common locations.")
|
|
schema([
|
|
Column("path", TEXT, "Binary path"),
|
|
Column("username", TEXT, "Binary owner username"),
|
|
Column("groupname", TEXT, "Binary owner group"),
|
|
Column("permissions", TEXT, "Binary permissions"),
|
|
])
|
|
attributes(cacheable=True)
|
|
implementation("suid_bin@genSuidBin")
|