mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
10 lines
575 B
Plaintext
10 lines
575 B
Plaintext
table_name("ntfs_acl_permissions")
|
|
description("Retrieve NTFS ACL permission information for files and directories.")
|
|
schema([
|
|
Column("path", TEXT, "Path to the file or directory."),
|
|
Column("type", TEXT, "Type of access mode for the access control entry."),
|
|
Column("principal", TEXT, "User or group to which the ACE applies."),
|
|
Column("access", TEXT, "Specific permissions that indicate the rights described by the ACE."),
|
|
Column("inherited_from", TEXT, "The inheritance policy of the ACE."),
|
|
])
|
|
implementation("system/windows/ntfs_acl_permissions@genNtfsAclPerms") |