Skip to content

Commit 53b4e92

Browse files
authored
[New Rule] Curl or Wget Spawned via Node.js (#5132)
* [New Rule] Curl or Wget Spawned via Node.js * Update command_and_control_curl_wget_spawn_via_nodejs_parent.toml
1 parent e147188 commit 53b4e92

File tree

1 file changed

+84
-0
lines changed

1 file changed

+84
-0
lines changed
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
[metadata]
2+
creation_date = "2025/09/18"
3+
integration = ["endpoint"]
4+
maturity = "production"
5+
updated_date = "2025/09/18"
6+
7+
[rule]
8+
author = ["Elastic"]
9+
description = """
10+
This rule detects when Node.js, directly or via a shell, spawns the curl or wget command. This may indicate
11+
command and control behavior. Adversaries may use Node.js to download additional tools or payloads onto
12+
the system.
13+
"""
14+
from = "now-9m"
15+
index = ["logs-endpoint.events.process*"]
16+
language = "eql"
17+
license = "Elastic License v2"
18+
name = "Curl or Wget Spawned via Node.js"
19+
risk_score = 21
20+
rule_id = "d9af2479-ad13-4471-a312-f586517f1243"
21+
setup = """## Setup
22+
23+
This rule requires data coming in from Elastic Defend.
24+
25+
### Elastic Defend Integration Setup
26+
Elastic 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.
41+
For 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.
44+
For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html).
45+
"""
46+
severity = "low"
47+
tags = [
48+
"Domain: Endpoint",
49+
"OS: Linux",
50+
"Use Case: Threat Detection",
51+
"Tactic: Command and Control",
52+
"Data Source: Elastic Defend",
53+
]
54+
timestamp_override = "event.ingested"
55+
type = "eql"
56+
query = '''
57+
process 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]]
69+
framework = "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/"

0 commit comments

Comments
 (0)