mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2024-12-14 10:04:40 +00:00
9 lines
140 B
SQL
9 lines
140 B
SQL
-- Retrieves all the currently installed certificates on a system
|
|
--
|
|
-- tags: postmortem
|
|
-- platform: posix
|
|
SELECT
|
|
*
|
|
FROM
|
|
certificates;
|