Attempt to Disable IPTables or Firewall

Adversaries may attempt to disable the iptables or firewall service in an attempt to affect how a host is allowed to receive or send network traffic.

Elastic rule (View on GitHub)

 1[metadata]
 2creation_date = "2023/02/22"
 3integration = ["endpoint"]
 4maturity = "production"
 5min_stack_comments = "New fields added: required_fields, related_integrations, setup"
 6min_stack_version = "8.3.0"
 7updated_date = "2024/02/20"
 8
 9[rule]
10author = ["Elastic"]
11description = """
12Adversaries may attempt to disable the iptables or firewall service in an attempt to affect how a host is allowed to
13receive or send network traffic.
14"""
15from = "now-9m"
16index = ["logs-endpoint.events.*", "endgame-*"]
17language = "eql"
18license = "Elastic License v2"
19name = "Attempt to Disable IPTables or Firewall"
20risk_score = 21
21rule_id = "83e9c2b3-24ef-4c1d-a8cd-5ebafb5dfa2f"
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        "Use Case: Threat Detection",
52        "Tactic: Defense Evasion",
53        "Data Source: Elastic Defend",
54        "Data Source: Elastic Endgame"
55        
56        ]
57timestamp_override = "event.ingested"
58type = "eql"
59query = '''
60process where host.os.type == "linux" and event.type == "start" and event.action in ("exec", "exec_event") and
61 (
62   /* disable FW */
63   (
64     (process.name == "ufw" and process.args == "disable") or
65     (process.name == "iptables" and process.args == "-F" and process.args_count == 2)
66   ) or
67
68   /* stop FW service */
69   (
70     ((process.name == "service" and process.args == "stop") or
71       (process.name == "chkconfig" and process.args == "off") or
72       (process.name == "systemctl" and process.args in ("disable", "stop", "kill"))) and
73    process.args in ("firewalld", "ip6tables", "iptables")
74    )
75  )
76'''
77
78[[rule.threat]]
79framework = "MITRE ATT&CK"
80
81[[rule.threat.technique]]
82name = "Impair Defenses"
83id = "T1562"
84reference = "https://attack.mitre.org/techniques/T1562/"
85
86[[rule.threat.technique.subtechnique]]
87name = "Disable or Modify Tools"
88id = "T1562.001"
89reference = "https://attack.mitre.org/techniques/T1562/001/"
90
91[rule.threat.tactic]
92name = "Defense Evasion"
93id = "TA0005"
94reference = "https://attack.mitre.org/tactics/TA0005/"

Related rules

to-top