mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
698e226b80
When strings match they will be populated into the "strings" column of the table. The format is identifier:offset. When a matching rule has tags defined the tags will be put into the "tags" column of the table in a comma separated list.
14 lines
549 B
Plaintext
14 lines
549 B
Plaintext
table_name("yara")
|
|
description("Track YARA matches for files or PIDs.")
|
|
schema([
|
|
Column("path", TEXT, "The path scanned"),
|
|
Column("matches", TEXT, "List of YARA matches"),
|
|
Column("count", INTEGER, "Number of YARA matches"),
|
|
Column("sig_group", TEXT, "Signature group used"),
|
|
Column("sigfile", TEXT, "Signature file used"),
|
|
Column("pattern", TEXT, "A pattern which can be used to match file paths"),
|
|
Column("strings", TEXT, "Matching strings"),
|
|
Column("tags", TEXT, "Matching tags"),
|
|
])
|
|
implementation("yara@genYara")
|