mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-01-08 22:39:28 +00:00
9 lines
310 B
MySQL
9 lines
310 B
MySQL
|
-- Retrieves all the ramdisk currently mounted in the target system.
|
||
|
--
|
||
|
-- interval: 3600
|
||
|
-- platform: posix
|
||
|
-- value: Identify if an attacker is using temporary, memory storage to avoid touching disk for anti-forensics purposes
|
||
|
-- version: 1.4.5
|
||
|
|
||
|
select * from block_devices where type = 'Virtual Interface';
|