mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
17 lines
440 B
Plaintext
17 lines
440 B
Plaintext
table_name("elf_dynamic")
|
|
description("ELF dynamic section information.")
|
|
schema([
|
|
Column("tag", INTEGER, "Tag ID"),
|
|
Column("value", INTEGER, "Tag value"),
|
|
Column("class", INTEGER, "Class (32 or 64)"),
|
|
Column("path", TEXT, "Path to ELF file", required=True, index=True),
|
|
])
|
|
|
|
implementation("elf_info@getELFDynamic")
|
|
examples([
|
|
"select * from elf_dynamic where path = '/usr/bin/grep'",
|
|
])
|
|
fuzz_paths([
|
|
"/usr/bin",
|
|
])
|