mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-02-18 10:36:56 +00:00
11 lines
259 B
SQL
11 lines
259 B
SQL
-- Retrieves the current list of Network File System mounted shares.
|
|
--
|
|
-- interval: 3600
|
|
-- platform: darwin
|
|
-- value: Scope for lateral movement. Potential exfiltration locations. Potential dormant backdoors.
|
|
-- version: 1.4.5
|
|
select
|
|
*
|
|
from
|
|
nfs_shares;
|