mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-06 17:45:22 +00:00
15 lines
409 B
Plaintext
15 lines
409 B
Plaintext
table_name("kernel_info")
|
|
description("Basic active kernel information.")
|
|
schema([
|
|
Column("version", TEXT, "Kernel version"),
|
|
Column("arguments", TEXT, "Kernel arguments"),
|
|
Column("path", TEXT, "Kernel path"),
|
|
Column("device", TEXT, "Kernel device identifier"),
|
|
])
|
|
attributes(cacheable=True)
|
|
implementation("system/kernel_info@genKernelInfo")
|
|
fuzz_paths([
|
|
"/proc/cmdline",
|
|
"/proc/version",
|
|
])
|