osquery-1/specs/etc_services.table

15 lines
502 B
Plaintext
Raw Normal View History

table_name("etc_services")
description("Line-parsed /etc/services.")
schema([
2015-02-10 04:13:11 +00:00
Column("name", TEXT, "Service name"),
Column("port", INTEGER, "Service port number"),
Column("protocol", TEXT, "Transport protocol (TCP/UDP)"),
Column("aliases", TEXT, "Optional space separated list of other names for a service"),
Column("comment", TEXT, "Optional comment for a service."),
])
attributes(cacheable=True)
implementation("etc_services@genEtcServices")
2016-09-14 03:37:31 +00:00
fuzz_paths([
"/etc/services",
])