mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-06 09:35:20 +00:00
9 lines
264 B
Plaintext
9 lines
264 B
Plaintext
table_name("etc_hosts", aliases=["hosts"])
|
|
description("Line-parsed /etc/hosts.")
|
|
schema([
|
|
Column("address", TEXT, "IP address mapping"),
|
|
Column("hostnames", TEXT, "Raw hosts mapping"),
|
|
])
|
|
attributes(cacheable=True)
|
|
implementation("etc_hosts@genEtcHosts")
|