osquery-1/specs/linux/apt_sources.table
2016-09-13 20:37:31 -07:00

17 lines
613 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

table_name("apt_sources")
description("Current list of APT repositories or software channels.")
schema([
Column("name", TEXT, "Repository name"),
Column("base_uri", TEXT, "Repository base URI"),
Column("package_cache_file", TEXT, "Repository cache file"),
Column("release", TEXT, "Release name"),
Column("component", TEXT, "Repository component"),
Column("version", TEXT, "Repository source version"),
Column("maintainer", TEXT, "Repository maintainer"),
Column("site", TEXT, "Repository site"),
])
implementation("system/apt_sources@genAptSrcs")
fuzz_paths([
"/etc/apt/",
])