mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
11 lines
407 B
Plaintext
11 lines
407 B
Plaintext
table_name("kernel_integrity")
|
|
description("Various Linux kernel integrity checked attributes.")
|
|
schema([
|
|
Column("sycall_addr_modified", INTEGER,
|
|
"0 or 1, for whether a syscall table pointer is modified"),
|
|
Column("text_segment_hash", TEXT,
|
|
"Hash value for the kernel's .text memory segment"),
|
|
])
|
|
attributes(kernel_required=True)
|
|
implementation("kernel_integrity@genKernelIntegrity")
|