mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-02-16 17:37:06 +00:00
9 lines
119 B
SQL
9 lines
119 B
SQL
-- Return the OS version including patch level
|
|
--
|
|
-- tags: postmortem
|
|
-- platform: posix
|
|
SELECT
|
|
*
|
|
FROM
|
|
os_version;
|