mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
a105924804
1. Example queries will run with an (optional) integration test. 2. Fix bad accesses with OS X package BOMs 3. Move spec files from ./osquery/tables/specs to ./specs 4. Remove server parsers (netlib) from client builds.
9 lines
364 B
Plaintext
9 lines
364 B
Plaintext
table_name("xprotect_reports")
|
|
description("Database of XProtect matches (if user generated/sent an XProtect report).")
|
|
schema([
|
|
Column("name", TEXT, "Description of XProtected malware"),
|
|
Column("user_action", TEXT, "Action taken by user after prompted"),
|
|
Column("time", TEXT, "Quarantine alert time"),
|
|
])
|
|
implementation("xprotect@genXProtectReports")
|