mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +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.
14 lines
608 B
Plaintext
14 lines
608 B
Plaintext
table_name("crontab")
|
|
description("Line parsed values from system and user cron/tab.")
|
|
schema([
|
|
Column("event", TEXT, "The job @event name (rare)"),
|
|
Column("minute", TEXT, "The exact minute for the job"),
|
|
Column("hour", TEXT, "The hour of the day for the job"),
|
|
Column("day_of_month", TEXT, "The day of the month for the job"),
|
|
Column("month", TEXT, "The month of the year for the job"),
|
|
Column("day_of_week", TEXT, "The day of the week for the job"),
|
|
Column("command", TEXT, "Raw command string"),
|
|
Column("path", TEXT, "File parsed"),
|
|
])
|
|
implementation("crontab@genCronTab")
|