mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
12 lines
448 B
Plaintext
12 lines
448 B
Plaintext
table_name("signature")
|
|
description("File (executable, bundle, installer, disk) code signing status.")
|
|
schema([
|
|
Column("path", TEXT, "Must provide a path or directory", required=True),
|
|
Column("signed", INTEGER, "1 If the file is signed else 0"),
|
|
Column("identifier", TEXT, "The signing identifier sealed into the signature"),
|
|
])
|
|
implementation("signature@genSignature")
|
|
examples([
|
|
"select * from signature where path = '/bin/ls'",
|
|
])
|