mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
12 lines
310 B
Plaintext
12 lines
310 B
Plaintext
table_name("memory_map")
|
|
description("OS memory region map.")
|
|
schema([
|
|
Column("name", TEXT, "Region name"),
|
|
Column("start", TEXT, "Start address of memory region"),
|
|
Column("end", TEXT, "End address of memory region"),
|
|
])
|
|
implementation("memory_map@genMemoryMap")
|
|
fuzz_paths([
|
|
"/proc/iomem",
|
|
])
|