Skip to content

Commit ebccfef

Browse files
committed
rules: add runc to known_memfd_execution_binaries
Signed-off-by: Yutong Sun <yutongsu@amazon.com>
1 parent abf6637 commit ebccfef

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

rules/falco_rules.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1230,10 +1230,14 @@
12301230
tags: [maturity_stable, host, container, network, process, mitre_execution, T1059]
12311231

12321232
- list: known_memfd_execution_binaries
1233-
items: []
1233+
items: [runc]
12341234

12351235
- macro: known_memfd_execution_processes
1236-
condition: (proc.name in (known_memfd_execution_binaries))
1236+
condition: >
1237+
(proc.name in (known_memfd_execution_binaries))
1238+
or (proc.exepath = "memfd:runc_cloned:/proc/self/exe")
1239+
or (proc.exe = "memfd:runc_cloned:/proc/self/exe")
1240+
12371241
12381242
- rule: Fileless execution via memfd_create
12391243
desc: >

0 commit comments

Comments
 (0)