mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-06 09:35:20 +00:00
14 lines
400 B
Plaintext
14 lines
400 B
Plaintext
table_name("etc_protocols")
|
|
description("Line-parsed /etc/protocols.")
|
|
schema([
|
|
Column("name", TEXT, "Protocol name"),
|
|
Column("number", INTEGER, "Protocol number"),
|
|
Column("alias", TEXT, "Protocol alias"),
|
|
Column("comment", TEXT, "Comment with protocol description"),
|
|
])
|
|
attributes(cacheable=True)
|
|
implementation("etc_protocols@genEtcProtocols")
|
|
fuzz_paths([
|
|
"/etc/protocols",
|
|
])
|