osquery-1/specs/darwin/extended_attributes.table

11 lines
534 B
Plaintext
Raw Normal View History

table_name("extended_attributes")
description("Get the extended attributes for files (similar to Windows ADS)")
schema([
Column("path", TEXT, "Absolute file path", required=True),
Column("directory", TEXT, "Directory of file(s)", required=True),
Column("key", TEXT, "Name of the value generated from the extended attribute"),
Column("value", TEXT, "The parsed information from the attribute"),
2015-04-11 22:57:12 +00:00
Column("base64", INTEGER, "1 if the value is base64 encoded else 0"),
])
implementation("extended_attributes@genXattr")