mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 02:18:53 +00:00
8 lines
317 B
Plaintext
8 lines
317 B
Plaintext
table_name("shared_folders")
|
|
description("Folders available to others via SMB or AFP.")
|
|
schema([
|
|
Column("name", TEXT, "The shared name of the folder as it appears to other users"),
|
|
Column("path", TEXT, "Absolute path of shared folder on the local system")
|
|
])
|
|
implementation("shared_folders@genSharedFolders")
|