Detection rules › Elastic

Egress Network Connection from Memory File Descriptor

Time window
10s
Sequence by
process.entity_id
Source
github.com/elastic/protections-artifacts

This rule detects when a process creates an in-memory file descriptor (memfd_create) followed by an egress network connection from an unusual executable. This activity indicates an active attempt to execute a fileless payload and should be considered highly abnormal or suspicious. This activity can occur when the memfd syscall is used to create a memory-resident file, such as a payload, and then execute it, after which it establishes outbound network connections for command-and-control (C2).

MITRE ATT&CK coverage

Rule body

[rule]
description = """
This rule detects when a process creates an in-memory file descriptor (memfd_create) followed by an egress network
connection from an unusual executable. This activity indicates an active attempt to execute a fileless payload and
should be considered highly abnormal or suspicious. This activity can occur when the memfd syscall is used to create a
memory-resident file, such as a payload, and then execute it, after which it establishes outbound network connections
for command-and-control (C2).
"""
id = "3e499558-b79d-4cbb-afa0-dc24a0b59ab2"
license = "Elastic License v2"
name = "Egress Network Connection from Memory File Descriptor"
os_list = ["linux"]
reference = ["https://man7.org/linux/man-pages/man2/memfd_create.2.html"]
version = "1.0.10"

query = '''
sequence by process.entity_id with maxspan=10s
  [process where event.type == "start" and event.action == "memfd_create" and (
    process.executable like (
      "memfd:*", "?memfd:*", "/tmp/*", "/var/tmp/*", "/dev/shm/*", "./*", "/run/user/*", "/var/run/user/*",
      "/boot/*", "/sys/*", "/lost+found/*", "/proc/*", "/var/mail/*", "/var/www/*", "/home/*/*", "/root/*"
    ) or
    (process.name like "python*" and process.args == "-c") or
    (process.name like ("perl*", "ruby*", "lua*", "node", "nodejs") and process.args like "-e*") or
    (process.name like "php*" and process.args like "-r*") or
    process.name like (".*", "*.py", "*.pyc", "*.lua", "*.pl", "*.rb", "*.bin", "*.php", "*.js", "*.mjs") or
    (
      process.name like ("python*", "perl*", "php*", "ruby*", "lua*", "node", "java", "javaw") and
      (
        process.args like (
          "/tmp/*", "/var/tmp/*", "/dev/shm/*", "./*", "/run/user/*", "/var/run/user/*",
          "/boot/*", "/sys/*", "/lost+found/*", "/proc/*", "/var/mail/*", "/var/www/*",
          "/home/*/*", "/root/*"
        ) and process.args_count <= 2
      ) 
    )
  ) and
  process.parent.name in ("bash", "dash", "sh", "tcsh", "csh", "zsh", "ksh", "fish", "mksh", "busybox") and
  not (
    process.executable like (
      "/tmp/.mount_*", "/nix/store/*/bin/.qemu-system-x86_64-wrapped", "/root/.local/share/claude/versions/*", "/home/*/*/*",
      "/usr/bin/qgis.bin", "/app/bin/evolution.bin", "/opt/cpanel/ea-php*/root/usr/bin/php-cgi", "/nix/store/*/bin/.obs-wrapped"
    ) or
    process.command_line == "/usr/bin/php /var/www/glpi/front/cron.php" or
    (
      process.executable == "/home/runner/bin/Runner.Listener" and
      process.Ext.memfd.name == "memfd:doublemapper"
    ) or
    (
      process.name like "php*" and
      process.Ext.memfd.name in ("opcache_lock", "anon_hugepage")
    ) or
    (
      process.executable == "/app/bin/evolution.bin" and
      process.Ext.memfd.name == "memfd:WebKitSharedMemory"
    ) or
    (
      process.name like "python*" and
      process.Ext.memfd.name == "wayland-shm"
    ) or
    (
      process.executable like "/home/*/.local/share/claude/versions/*" and
      process.Ext.memfd.name in ("memfd:spawn_stdio_stdin", "spawn_stdio_stdin")
    ) or
    (
     process.executable like "/home/*/.elixir-install/installs/otp/*/bin/beam.smp" and
     process.Ext.memfd.name == "memfd:vmem"
    ) or
    (
      process.name == "dotnet" and
      process.Ext.memfd.name == "memfd:doublemapper"
    ) or
    (
      process.executable == "/usr/bin/php" and
      process.args like "/var/www/html/*"
    ) or
    (
      process.executable like "/usr/bin/php*" and
      process.working_directory like "/var/www/vhosts/*"
    )
  )]
  [network where event.type == "start" and event.action == "connection_attempted" and 
  not (
    destination.ip == null or destination.ip == "0.0.0.0" or cidrmatch(
    destination.ip, "10.0.0.0/8", "127.0.0.0/8", "169.254.0.0/16", "172.16.0.0/12", "192.0.0.0/24", "192.0.0.0/29",
    "192.0.0.8/32", "192.0.0.9/32", "192.0.0.10/32", "192.0.0.170/32", "192.0.0.171/32", "192.0.2.0/24",
    "192.31.196.0/24", "192.52.193.0/24", "192.168.0.0/16", "192.88.99.0/24", "224.0.0.0/4", "100.64.0.0/10",
    "192.175.48.0/24","198.18.0.0/15", "198.51.100.0/24", "203.0.113.0/24", "240.0.0.0/4", "::1", "FE80::/10",
    "FF00::/8"
    )
  )]
'''

min_endpoint_version = "9.1.4"
optional_actions = []
[[actions]]
action = "kill_process"
field = "process.entity_id"
state = 0

[[actions]]
action = "kill_process"
field = "process.entity_id"
state = 1

[[actions]]
action = "kill_process"
field = "process.parent.entity_id"
state = 0

[[actions]]
action = "kill_process"
field = "process.parent.entity_id"
state = 1

[[threat]]
framework = "MITRE ATT&CK"
[[threat.technique]]
id = "T1106"
name = "Native API"
reference = "https://attack.mitre.org/techniques/T1106/"


[threat.tactic]
id = "TA0002"
name = "Execution"
reference = "https://attack.mitre.org/tactics/TA0002/"
[[threat]]
framework = "MITRE ATT&CK"
[[threat.technique]]
id = "T1055"
name = "Process Injection"
reference = "https://attack.mitre.org/techniques/T1055/"
[[threat.technique.subtechnique]]
id = "T1055.009"
name = "Proc Memory"
reference = "https://attack.mitre.org/techniques/T1055/009/"


[[threat.technique]]
id = "T1620"
name = "Reflective Code Loading"
reference = "https://attack.mitre.org/techniques/T1620/"


[threat.tactic]
id = "TA0005"
name = "Defense Evasion"
reference = "https://attack.mitre.org/tactics/TA0005/"
[[threat]]
framework = "MITRE ATT&CK"

[threat.tactic]
id = "TA0011"
name = "Command and Control"
reference = "https://attack.mitre.org/tactics/TA0011/"

[internal]
min_endpoint_version = "9.1.4"

Stages and Predicates

Ordered sequence: each step below must occur in order within 10s, correlated by process.entity_id.

Stage 1: process

[process where event.type == "start" and event.action == "memfd_create" and (
    process.executable like (
      "memfd:*", "?memfd:*", "/tmp/*", "/var/tmp/*", "/dev/shm/*", "./*", "/run/user/*", "/var/run/user/*",
      "/boot/*", "/sys/*", "/lost+found/*", "/proc/*", "/var/mail/*", "/var/www/*", "/home/*/*", "/root/*"
    ) or
    (process.name like "python*" and process.args == "-c") or
    (process.name like ("perl*", "ruby*", "lua*", "node", "nodejs") and process.args like "-e*") or
    (process.name like "php*" and process.args like "-r*") or
    process.name like (".*", "*.py", "*.pyc", "*.lua", "*.pl", "*.rb", "*.bin", "*.php", "*.js", "*.mjs") or
    (
      process.name like ("python*", "perl*", "php*", "ruby*", "lua*", "node", "java", "javaw") and
      (
        process.args like (
          "/tmp/*", "/var/tmp/*", "/dev/shm/*", "./*", "/run/user/*", "/var/run/user/*",
          "/boot/*", "/sys/*", "/lost+found/*", "/proc/*", "/var/mail/*", "/var/www/*",
          "/home/*/*", "/root/*"
        ) and process.args_count <= 2
      ) 
    )
  ) and
  process.parent.name in ("bash", "dash", "sh", "tcsh", "csh", "zsh", "ksh", "fish", "mksh", "busybox") and
  not (
    process.executable like (
      "/tmp/.mount_*", "/nix/store/*/bin/.qemu-system-x86_64-wrapped", "/root/.local/share/claude/versions/*", "/home/*/*/*",
      "/usr/bin/qgis.bin", "/app/bin/evolution.bin", "/opt/cpanel/ea-php*/root/usr/bin/php-cgi", "/nix/store/*/bin/.obs-wrapped"
    ) or
    process.command_line == "/usr/bin/php /var/www/glpi/front/cron.php" or
    (
      process.executable == "/home/runner/bin/Runner.Listener" and
      process.Ext.memfd.name == "memfd:doublemapper"
    ) or
    (
      process.name like "php*" and
      process.Ext.memfd.name in ("opcache_lock", "anon_hugepage")
    ) or
    (
      process.executable == "/app/bin/evolution.bin" and
      process.Ext.memfd.name == "memfd:WebKitSharedMemory"
    ) or
    (
      process.name like "python*" and
      process.Ext.memfd.name == "wayland-shm"
    ) or
    (
      process.executable like "/home/*/.local/share/claude/versions/*" and
      process.Ext.memfd.name in ("memfd:spawn_stdio_stdin", "spawn_stdio_stdin")
    ) or
    (
     process.executable like "/home/*/.elixir-install/installs/otp/*/bin/beam.smp" and
     process.Ext.memfd.name == "memfd:vmem"
    ) or
    (
      process.name == "dotnet" and
      process.Ext.memfd.name == "memfd:doublemapper"
    ) or
    (
      process.executable == "/usr/bin/php" and
      process.args like "/var/www/html/*"
    ) or
    (
      process.executable like "/usr/bin/php*" and
      process.working_directory like "/var/www/vhosts/*"
    )
  )]

Stage 2: network

[network where event.type == "start" and event.action == "connection_attempted" and 
  not (
    destination.ip == null or destination.ip == "0.0.0.0" or cidrmatch(
    destination.ip, "10.0.0.0/8", "127.0.0.0/8", "169.254.0.0/16", "172.16.0.0/12", "192.0.0.0/24", "192.0.0.0/29",
    "192.0.0.8/32", "192.0.0.9/32", "192.0.0.10/32", "192.0.0.170/32", "192.0.0.171/32", "192.0.2.0/24",
    "192.31.196.0/24", "192.52.193.0/24", "192.168.0.0/16", "192.88.99.0/24", "224.0.0.0/4", "100.64.0.0/10",
    "192.175.48.0/24","198.18.0.0/15", "198.51.100.0/24", "203.0.113.0/24", "240.0.0.0/4", "::1", "FE80::/10",
    "FF00::/8"
    )
  )]

Exclusions

The rule actively suppresses these predicates.

FieldKindExcluded valuesSearch
process.Ext.memfd.nameeqmemfd:WebKitSharedMemoryexcludes:process.Ext.memfd.name field:"process.Ext.memfd.name" value:"memfd:WebKitSharedMemory"
process.executableeq/app/bin/evolution.binexcludes:process.executable field:"process.executable" value:"/app/bin/evolution.bin"
process.Ext.memfd.nameeqmemfd:doublemapperexcludes:process.Ext.memfd.name field:"process.Ext.memfd.name" value:"memfd:doublemapper"
process.executableeq/home/runner/bin/Runner.Listenerexcludes:process.executable field:"process.executable" value:"/home/runner/bin/Runner.Listener"
process.nameeqdotnetexcludes:process.name field:"process.name" value:"dotnet"
process.Ext.memfd.nameeqmemfd:vmemexcludes:process.Ext.memfd.name field:"process.Ext.memfd.name" value:"memfd:vmem"
process.executablewildcard/home/*/.elixir-install/installs/otp/*/bin/beam.smpexcludes:process.executable field:"process.executable" value:"/home/*/.elixir-install/installs/otp/*/bin/beam.smp"
process.Ext.memfd.nameeqwayland-shmexcludes:process.Ext.memfd.name field:"process.Ext.memfd.name" value:"wayland-shm"
process.namestarts_withpythonexcludes:process.name field:"process.name" value:"python"
process.Ext.memfd.nameinanon_hugepage, opcache_lockexcludes:process.Ext.memfd.name field:"process.Ext.memfd.name" value:"anon_hugepage" field:"process.Ext.memfd.name" value:"opcache_lock"
process.namestarts_withphpexcludes:process.name field:"process.name" value:"php"
process.Ext.memfd.nameinmemfd:spawn_stdio_stdin, spawn_stdio_stdinexcludes:process.Ext.memfd.name field:"process.Ext.memfd.name" value:"memfd:spawn_stdio_stdin" field:"process.Ext.memfd.name" value:"spawn_stdio_stdin"
process.executablewildcard/home/*/.local/share/claude/versions/*excludes:process.executable field:"process.executable" value:"/home/*/.local/share/claude/versions/*"
process.argsstarts_with/var/www/html/excludes:process.args field:"process.args" value:"/var/www/html/"
process.executableeq/usr/bin/phpexcludes:process.executable field:"process.executable" value:"/usr/bin/php"
process.executablestarts_with/usr/bin/phpexcludes:process.executable field:"process.executable" value:"/usr/bin/php"
process.working_directorystarts_with/var/www/vhosts/excludes:process.working_directory field:"process.working_directory" value:"/var/www/vhosts/"
process.command_lineeq/usr/bin/php /var/www/glpi/front/cron.phpexcludes:process.command_line field:"process.command_line" value:"/usr/bin/php /var/www/glpi/front/cron.php"
process.executablewildcard/tmp/.mount_*, /nix/store/*/bin/.qemu-system-x86_64-wrapped, /root/.local/share/claude/versions/*, /home/*/*/*, /usr/bin/qgis.bin, /app/bin/evolution.bin, /opt/cpanel/ea-php*/root/usr/bin/php-cgi, /nix/store/*/bin/.obs-wrappedexcludes:process.executable
destination.ipcidr_match10.0.0.0/8, 127.0.0.0/8, 169.254.0.0/16, 172.16.0.0/12, 192.0.0.0/24, 192.0.0.0/29, 192.0.0.8/32, 192.0.0.9/32, 192.0.0.10/32, 192.0.0.170/32, 192.0.0.171/32, 192.0.2.0/24, 192.31.196.0/24, 192.52.193.0/24, 192.168.0.0/16, 192.88.99.0/24, 224.0.0.0/4, 100.64.0.0/10, 192.175.48.0/24, 198.18.0.0/15, 198.51.100.0/24, 203.0.113.0/24, 240.0.0.0/4, ::1, FE80::/10, FF00::/8excludes:destination.ip
destination.ipeq0.0.0.0excludes:destination.ip field:"destination.ip" value:"0.0.0.0"
destination.ipis_null(no value, null check)excludes:destination.ip

Indicators

These rows show field, operator, and value matches.

FieldKindValuesSearch
event.actioneq
  • connection_attempted
  • memfd_create
field:"EventType" kind:eq
event.typeeq
  • start
field:"event.type" kind:eq value:"start"
process.argseq
  • -c
field:"process.args" kind:eq value:"-c"
process.argswildcard
  • -e*
  • -r*
  • ./*
  • /boot/*
  • /dev/shm/*
  • /home/*/*
  • /lost+found/*
  • /proc/*
  • /root/*
  • /run/user/*
  • /sys/*
  • /tmp/*
  • /var/mail/*
  • /var/run/user/*
  • /var/tmp/*
  • /var/www/*
field:"process.args" kind:wildcard
process.args_countle
  • 2 transforms: number
field:"process.args_count" kind:le value:"2"
process.executablewildcard
  • ./*
  • /boot/*
  • /dev/shm/*
  • /home/*/*
  • /lost+found/*
  • /proc/*
  • /root/*
  • /run/user/*
  • /sys/*
  • /tmp/*
  • /var/mail/*
  • /var/run/user/*
  • /var/tmp/*
  • /var/www/*
  • ?memfd:*
  • memfd:*
field:"Image" kind:wildcard
process.namewildcard
  • *.bin
  • *.js
  • *.lua
  • *.mjs
  • *.php
  • *.pl
  • *.py
  • *.pyc
  • *.rb
  • .*
  • java
  • javaw
  • lua*
  • node
  • nodejs
  • perl*
  • php*
  • python*
  • ruby*
field:"process_name" kind:wildcard
process.parent.namein
  • bash
  • busybox
  • csh
  • dash
  • fish
  • ksh
  • mksh
  • sh
  • tcsh
  • zsh
field:"parent_process_name" kind:in