Returns a list of file information from /etc (non-hidden only)


Query · osquery

-- Returns a list of file information from /etc (non-hidden only)
--
-- tags: postmortem
-- platform: posix
SELECT
  *
FROM
  file
  JOIN hash ON file.path = hash.path
WHERE
  file.path LIKE "/etc/%%";
Raw source Returns a list of file information from /etc (non-hidden only) · osquery SQL
Esc
Published by chainguard-dev/osquery-defense-kit ↗, licensed under Apache 2.0 ↗. Reproduced here unmodified.
-- Returns a list of file information from /etc (non-hidden only)
--
-- tags: postmortem
-- platform: posix
SELECT
  *
FROM
  file
  JOIN hash ON file.path = hash.path
WHERE
  file.path LIKE "/etc/%%";

Detection rules belong to the projects that publish them and remain under their own licenses. This site indexes and links to them; it claims no rights in them.