Indicative of a machine that probably needs a reboot for operating-system patches


Query · osquery

-- Indicative of a machine that probably needs a reboot for operating-system patches
--
-- tags: persistent state
-- platform: posix
SELECT
  os_version.name AS os_name,
  os_version.version AS os_version,
  kernel_info.version AS kernel,
  days AS uptime_days
FROM
  kernel_info,
  os_version,
  uptime
WHERE
  uptime.days > 89;
Raw source Indicative of a machine that probably needs a reboot for operating-system patches · osquery SQL
Esc
Published by chainguard-dev/osquery-defense-kit ↗, licensed under Apache 2.0 ↗. Reproduced here unmodified.
-- Indicative of a machine that probably needs a reboot for operating-system patches
--
-- tags: persistent state
-- platform: posix
SELECT
  os_version.name AS os_name,
  os_version.version AS os_version,
  kernel_info.version AS kernel,
  days AS uptime_days
FROM
  kernel_info,
  os_version,
  uptime
WHERE
  uptime.days > 89;

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.