Elastic medium stable eql
Potential Data Splitting Detected
This rule looks for the usage of common data splitting utilities with specific arguments that indicate data splitting for exfiltration on Linux systems. Data splitting is a technique used by adversaries to split data into smaller parts to avoid detection and exfiltrate data.
Detection Logic
process where host.os.type == "linux" and event.type == "start" and
event.action in ("exec", "exec_event", "start", "ProcessRollup2") and
(
(process.name == "dd" and process.args like "bs=*" and process.args like "if=*") or
(
process.name in ("split", "rsplit") and
(
(process.args == "-b" or process.args like "--bytes*") or
(process.args == "-C" or process.args like "--line-bytes*")
)
)
) and
not (
process.parent.name in ("apport", "overlayroot", "nessus-agent-module") or
process.args like (
"if=/tmp/nvim*", "if=/boot/*", "if=/dev/random", "if=/dev/urandom", "/dev/mapper/*",
"if=*.iso", "of=/dev/stdout", "if=/dev/zero", "if=/dev/sda", "/proc/sys/kernel/*"
) or
?process.parent.args in ("/etc/init.d/apport", "/usr/bin/spectre-meltdown-checker")
) Field Validations
Loading…
Comments (0)
Loading comments...