osquery-1/specs/windows/autoexec.table
2017-06-27 13:48:21 -07:00

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")