osquery-1/specs/linux/memory_map.table
2016-09-13 20:37:31 -07:00

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