Detect weird mounts, like mounting the EFI partition


Query · osquery

-- Detect weird mounts, like mounting the EFI partition
--
-- references:
--   * https://www.welivesecurity.com/2022/07/19/i-see-what-you-did-there-look-cloudmensis-macos-spyware/
--
-- platform: darwin
-- tags: transient filesystem state
SELECT
  *
FROM
  mounts
WHERE
  device = '/dev/disk0s1'
  AND type = 'msdos';
Raw source Detect weird mounts, like mounting the EFI partition · osquery SQL
Esc
Published by chainguard-dev/osquery-defense-kit ↗, licensed under Apache 2.0 ↗. Reproduced here unmodified.
-- Detect weird mounts, like mounting the EFI partition
--
-- references:
--   * https://www.welivesecurity.com/2022/07/19/i-see-what-you-did-there-look-cloudmensis-macos-spyware/
--
-- platform: darwin
-- tags: transient filesystem state
SELECT
  *
FROM
  mounts
WHERE
  device = '/dev/disk0s1'
  AND type = 'msdos';

Detection rules belong to the projects that publish them and remain under their own licenses. This site indexes and links to them; it claims no rights in them.