mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
d4a3fe2452
Preparation for Windows Tables. We need a Windows process table so that the daemon will run
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")
|