Binfmt Configuration File Creation
This rule detects the creation of a binfmt configuration file. Binfmt is a utility that is used to configure the behavior of the Linux kernel when executing binary files. By creating a malicious binfmt configuration file, threat actors can execute a backdoor script or command on the target system.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2026/08/25"
3integration = ["endpoint"]
4maturity = "production"
5updated_date = "2026/08/25"
6
7[rule]
8author = ["Elastic"]
9description = """
10This rule detects the creation of a binfmt configuration file. Binfmt is a utility that is used to
11configure the behavior of the Linux kernel when executing binary files. By creating a malicious
12binfmt configuration file, threat actors can execute a backdoor script or command on the target system.
13"""
14from = "now-9m"
15index = ["logs-endpoint.events.file*"]
16language = "eql"
17license = "Elastic License v2"
18name = "Binfmt Configuration File Creation"
19references = ["https://dfir.ch/posts/today_i_learned_binfmt_misc/"]
20risk_score = 21
21rule_id = "a3b47d21-20d6-45b0-8b75-fc27073bdef2"
22setup = """## Setup
23
24This rule requires data coming in from Elastic Defend.
25
26### Elastic Defend Integration Setup
27Elastic Defend is integrated into the Elastic Agent using Fleet. Upon configuration, the integration allows the Elastic Agent to monitor events on your host and send data to the Elastic Security app.
28
29#### Prerequisite Requirements:
30- Fleet is required for Elastic Defend.
31- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html).
32
33#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System:
34- Go to the Kibana home page and click "Add integrations".
35- In the query bar, search for "Elastic Defend" and select the integration to see more details about it.
36- Click "Add Elastic Defend".
37- Configure the integration name and optionally add a description.
38- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads".
39- Select a configuration preset. Each preset comes with different default settings for Elastic Agent, you can further customize these later by configuring the Elastic Defend integration policy. [Helper guide](https://www.elastic.co/guide/en/security/current/configure-endpoint-integration-policy.html).
40- We suggest selecting "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions"
41- Enter a name for the agent policy in "New agent policy name". If other agent policies already exist, you can click the "Existing hosts" tab and select an existing policy instead.
42For more details on Elastic Agent configuration settings, refer to the [helper guide](https://www.elastic.co/guide/en/fleet/8.10/agent-policy.html).
43- Click "Save and Continue".
44- To complete the integration, select "Add Elastic Agent to your hosts" and continue to the next section to install the Elastic Agent on your hosts.
45For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html).
46"""
47severity = "low"
48tags = [
49 "Domain: Endpoint",
50 "OS: Linux",
51 "Platform: Linux",
52 "Use Case: Threat Detection",
53 "Tactic: Persistence",
54 "Data Source: Elastic Defend",
55]
56timestamp_override = "event.ingested"
57type = "eql"
58query = '''
59file where host.os.type == "linux" and event.action != "deletion" and process.executable != null and
60file.path like (
61 "/etc/binfmt.d/*.conf", "/run/binfmt.d/*.conf", "/usr/local/lib/binfmt.d/*.conf", "/usr/lib/binfmt.d/*.conf",
62 "/proc/sys/fs/binfmt_misc/register", "/proc/sys/fs/binfmt_misc/*"
63) and
64not (
65 file.path like (
66 "/usr/lib/binfmt.d/python3.*.conf", "/usr/lib/binfmt.d/qemu-*-static.conf",
67 "/proc/sys/fs/binfmt_misc/status"
68 ) or
69 process.executable == "/usr/lib/systemd/systemd-binfmt"
70)
71'''
72
73[[rule.threat]]
74framework = "MITRE ATT&CK"
75
76[[rule.threat.technique]]
77id = "T1546"
78name = "Event Triggered Execution"
79reference = "https://attack.mitre.org/techniques/T1546/"
80
81[rule.threat.tactic]
82id = "TA0003"
83name = "Persistence"
84reference = "https://attack.mitre.org/tactics/TA0003/"
References
Related rules
- Suspicious Reading of procfs Syscall File
- Unusual File Creation via Web Server
- Kernel Module Loaded with Tainting Flags
- PHP File Creation in WordPress Plugin Directory
- Anomalous Process For a Linux Population