mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2024-12-12 17:14:37 +00:00
18 lines
222 B
SQL
18 lines
222 B
SQL
-- Retrieves the current status of IP/IPv6 forwarding.
|
|
--
|
|
-- tags: postmortem
|
|
-- platform: posix
|
|
SELECT
|
|
*
|
|
FROM
|
|
system_controls
|
|
WHERE
|
|
oid = '4.30.41.1'
|
|
UNION
|
|
SELECT
|
|
*
|
|
FROM
|
|
system_controls
|
|
WHERE
|
|
oid = '4.2.0.1';
|