osquery-1/specs/etc_hosts.table

9 lines
264 B
Plaintext
Raw Normal View History

2016-05-19 16:40:43 +00:00
table_name("etc_hosts", aliases=["hosts"])
2014-11-11 16:35:25 +00:00
description("Line-parsed /etc/hosts.")
schema([
Column("address", TEXT, "IP address mapping"),
2014-11-12 18:27:44 +00:00
Column("hostnames", TEXT, "Raw hosts mapping"),
])
attributes(cacheable=True)
implementation("etc_hosts@genEtcHosts")