mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-06 01:25:20 +00:00
10 lines
343 B
Plaintext
10 lines
343 B
Plaintext
table_name("fbsd_kmods")
|
|
description("Loaded FreeBSD kernel modules.")
|
|
schema([
|
|
Column("name", TEXT, "Module name"),
|
|
Column("size", INTEGER, "Size of module content"),
|
|
Column("refs", INTEGER, "Module reverse dependencies"),
|
|
Column("address", TEXT, "Kernel module address"),
|
|
])
|
|
implementation("fbsd_kmods@genFbsdKernelModules")
|