Curl or Wget Spawned via Node.js

This rule detects when Node.js, directly or via a shell, spawns the curl or wget command. This may indicate command and control behavior. Adversaries may use Node.js to download additional tools or payloads onto the system.

Elastic rule (View on GitHub)

 1[metadata]
 2creation_date = "2025/09/18"
 3integration = ["endpoint"]
 4maturity = "production"
 5updated_date = "2025/09/18"
 6
 7[rule]
 8author = ["Elastic"]
 9description = """
10This rule detects when Node.js, directly or via a shell, spawns the curl or wget command. This may indicate
11command and control behavior. Adversaries may use Node.js to download additional tools or payloads onto
12the system.
13"""
14from = "now-9m"
15index = ["logs-endpoint.events.process*"]
16language = "eql"
17license = "Elastic License v2"
18name = "Curl or Wget Spawned via Node.js"
19risk_score = 21
20rule_id = "d9af2479-ad13-4471-a312-f586517f1243"
21setup = """## Setup
22
23This rule requires data coming in from Elastic Defend.
24
25### Elastic Defend Integration Setup
26Elastic 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.
27
28#### Prerequisite Requirements:
29- Fleet is required for Elastic Defend.
30- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html).
31
32#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System:
33- Go to the Kibana home page and click "Add integrations".
34- In the query bar, search for "Elastic Defend" and select the integration to see more details about it.
35- Click "Add Elastic Defend".
36- Configure the integration name and optionally add a description.
37- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads".
38- 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).
39- We suggest selecting "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions"
40- 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.
41For more details on Elastic Agent configuration settings, refer to the [helper guide](https://www.elastic.co/guide/en/fleet/8.10/agent-policy.html).
42- Click "Save and Continue".
43- 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.
44For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html).
45"""
46severity = "low"
47tags = [
48    "Domain: Endpoint",
49    "OS: Linux",
50    "Use Case: Threat Detection",
51    "Tactic: Command and Control",
52    "Data Source: Elastic Defend",
53]
54timestamp_override = "event.ingested"
55type = "eql"
56query = '''
57process where host.os.type == "linux" and event.type == "start" and event.action == "exec" and process.parent.name == "node" and (
58  (
59    process.name in ("bash", "dash", "sh", "tcsh", "csh", "zsh", "ksh", "fish") and
60    process.args == "-c" and process.command_line like~ ("*curl*", "*wget*")
61  ) or 
62  (
63    process.name in ("curl", "wget")
64  )
65)
66'''
67
68[[rule.threat]]
69framework = "MITRE ATT&CK"
70
71  [rule.threat.tactic]
72  name = "Command and Control"
73  id = "TA0011"
74  reference = "https://attack.mitre.org/tactics/TA0011/"
75
76  [[rule.threat.technique]]
77  name = "Application Layer Protocol"
78  id = "T1071"
79  reference = "https://attack.mitre.org/techniques/T1071/"
80
81    [[rule.threat.technique.subtechnique]]
82    name = "Web Protocols"
83    id = "T1071.001"
84    reference = "https://attack.mitre.org/techniques/T1071/001/"

Related rules

to-top