mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
12 lines
466 B
Plaintext
12 lines
466 B
Plaintext
table_name("autoexec")
|
|
description("Aggregate of executables that will automatically "
|
|
"execute on the target machine. This is an amalgamation "
|
|
"of other tables like services, scheduled tasks, "
|
|
"startup_items and more.")
|
|
schema([
|
|
Column("path", TEXT, "Path to the executable", index=True),
|
|
Column("name", TEXT, "Name of the program"),
|
|
Column("source", TEXT, "Source table of the autoexec item")
|
|
])
|
|
implementation("autoexec@genAutoexec")
|