osquery-defense-kit/incident_response/ip_forwarding.sql
2022-10-19 16:19:53 -04:00

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';