mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 02:18:53 +00:00
a105924804
1. Example queries will run with an (optional) integration test. 2. Fix bad accesses with OS X package BOMs 3. Move spec files from ./osquery/tables/specs to ./specs 4. Remove server parsers (netlib) from client builds.
10 lines
330 B
Plaintext
10 lines
330 B
Plaintext
table_name("memory_map")
|
|
description("OS memory region map.")
|
|
schema([
|
|
Column("region", INTEGER, "Region index"),
|
|
Column("type", TEXT, "Textual description"),
|
|
Column("start", TEXT, "Start address of memory region"),
|
|
Column("end", TEXT, "End address of memory region"),
|
|
])
|
|
implementation("memory_map@genMemoryMap")
|