osquery-1/specs/darwin/nfs_shares.table
2016-09-13 20:37:31 -07:00

12 lines
372 B
Plaintext

table_name("nfs_shares")
description("NFS shares exported by the host.")
schema([
Column("share", TEXT, "Filesystem path to the share"),
Column("options", TEXT, "Options string set on the export share"),
Column("readonly", INTEGER, "1 if the share is exported readonly else 0"),
])
implementation("nfs_shares@genNFSShares")
fuzz_paths([
"/etc/exports",
])