Potential Linux Tunneling and/or Port Forwarding

This rule monitors for a set of Linux utilities that can be used for tunneling and port forwarding. Attackers can leverage tunneling and port forwarding techniques to bypass network defenses, establish hidden communication channels, and gain unauthorized access to internal resources, facilitating data exfiltration, lateral movement, and remote control.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2023/08/23"
  3integration = ["endpoint", "crowdstrike", "sentinel_one_cloud_funnel"]
  4maturity = "production"
  5updated_date = "2025/03/20"
  6
  7[transform]
  8[[transform.osquery]]
  9label = "Osquery - Retrieve Listening Ports"
 10query = "SELECT pid, address, port, socket, protocol, path FROM listening_ports"
 11
 12[[transform.osquery]]
 13label = "Osquery - Retrieve Open Sockets"
 14query = "SELECT pid, family, remote_address, remote_port, socket, state FROM process_open_sockets"
 15
 16[[transform.osquery]]
 17label = "Osquery - Retrieve Information for a Specific User"
 18query = "SELECT * FROM users WHERE username = {{user.name}}"
 19
 20[[transform.osquery]]
 21label = "Osquery - Investigate the Account Authentication Status"
 22query = "SELECT * FROM logged_in_users WHERE user = {{user.name}}"
 23
 24[[transform.osquery]]
 25label = "Osquery - Retrieve Running Processes by User"
 26query = "SELECT pid, username, name FROM processes p JOIN users u ON u.uid = p.uid ORDER BY username"
 27
 28[[transform.osquery]]
 29label = "Osquery - Retrieve Process Info"
 30query = "SELECT name, cmdline, parent, path, uid FROM processes"
 31
 32
 33[rule]
 34author = ["Elastic"]
 35description = """
 36This rule monitors for a set of Linux utilities that can be used for tunneling and port forwarding. Attackers can
 37leverage tunneling and port forwarding techniques to bypass network defenses, establish hidden communication channels,
 38and gain unauthorized access to internal resources, facilitating data exfiltration, lateral movement, and remote
 39control.
 40"""
 41from = "now-9m"
 42index = [
 43    "endgame-*",
 44    "logs-crowdstrike.fdr*",
 45    "logs-endpoint.events.process*",
 46    "logs-sentinel_one_cloud_funnel.*",
 47]
 48language = "eql"
 49license = "Elastic License v2"
 50name = "Potential Linux Tunneling and/or Port Forwarding"
 51note = """## Triage and analysis
 52
 53### Investigating Potential Linux Tunneling and/or Port Forwarding
 54
 55Attackers can leverage many utilities to clandestinely tunnel network communications and evade security measures, potentially gaining unauthorized access to sensitive systems.
 56
 57This rule looks for several utilities that are capable of setting up tunnel network communications by analyzing process names or command line arguments. 
 58
 59> **Note**:
 60> This investigation guide uses the [Osquery Markdown Plugin](https://www.elastic.co/guide/en/security/current/invest-guide-run-osquery.html) introduced in Elastic Stack version 8.5.0. Older Elastic Stack versions will display unrendered Markdown in this guide.
 61> This investigation guide uses [placeholder fields](https://www.elastic.co/guide/en/security/current/osquery-placeholder-fields.html) to dynamically pass alert data into Osquery queries. Placeholder fields were introduced in Elastic Stack version 8.7.0. If you're using Elastic Stack version 8.6.0 or earlier, you'll need to manually adjust this investigation guide's queries to ensure they properly run.
 62
 63#### Possible investigation steps
 64
 65- Identify any signs of suspicious network activity or anomalies that may indicate protocol tunneling. This could include unexpected traffic patterns or unusual network behavior.
 66  - Investigate listening ports and open sockets to look for potential protocol tunneling, reverse shells, or data exfiltration.
 67    - $osquery_0
 68    - $osquery_1
 69- Identify the user account that performed the action, analyze it, and check whether it should perform this kind of action.
 70  - $osquery_2
 71- Investigate whether the user is currently logged in and active.
 72  - $osquery_3
 73- Investigate the script execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence and whether they are located in expected locations.
 74  - $osquery_4
 75  - $osquery_5
 76- Investigate other alerts associated with the user/host during the past 48 hours.
 77  - If scripts or executables were dropped, retrieve the files and determine if they are malicious:
 78    - Use a private sandboxed malware analysis system to perform analysis.
 79      - Observe and collect information about the following activities:
 80        - Attempts to contact external domains and addresses.
 81          - Check if the domain is newly registered or unexpected.
 82          - Check the reputation of the domain or IP address.
 83        - File access, modification, and creation activities.
 84
 85### Related rules
 86
 87- Potential Protocol Tunneling via Chisel Client - 3f12325a-4cc6-410b-8d4c-9fbbeb744cfd
 88- Potential Protocol Tunneling via Chisel Server - ac8805f6-1e08-406c-962e-3937057fa86f
 89- Potential Protocol Tunneling via EarthWorm - 9f1c4ca3-44b5-481d-ba42-32dc215a2769
 90- Suspicious Utility Launched via ProxyChains - 6ace94ba-f02c-4d55-9f53-87d99b6f9af4
 91- ProxyChains Activity - 4b868f1f-15ff-4ba3-8c11-d5a7a6356d37
 92
 93### False positive analysis
 94
 95- If this activity is related to new benign software installation activity, consider adding exceptions — preferably with a combination of user and command line conditions.
 96- If this activity is related to a system administrator or developer who uses port tunneling/forwarding for benign purposes, consider adding exceptions for specific user accounts or hosts. 
 97- Try to understand the context of the execution by thinking about the user, machine, or business purpose. A small number of endpoints, such as servers with unique software, might appear unusual but satisfy a specific business need.
 98
 99### Response and remediation
100
101- Initiate the incident response process based on the outcome of the triage.
102- Isolate the involved host to prevent further post-compromise behavior.
103- If the triage identified malware, search the environment for additional compromised hosts.
104  - Implement temporary network rules, procedures, and segmentation to contain the malware.
105  - Stop suspicious processes.
106  - Immediately block the identified indicators of compromise (IoCs).
107  - Inspect the affected systems for additional malware backdoors, such as reverse shells, reverse proxies, or droppers, that attackers could use to reinfect the system.
108- Remove and block malicious artifacts identified during triage.
109- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
110- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
111- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
112- Leverage the incident response data and logging to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
113"""
114references = [
115    "https://blog.bitsadmin.com/living-off-the-foreign-land-windows-as-offensive-platform",
116    "https://book.hacktricks.xyz/generic-methodologies-and-resources/tunneling-and-port-forwarding",
117]
118risk_score = 47
119rule_id = "6ee947e9-de7e-4281-a55d-09289bdf947e"
120setup = """## Setup
121
122This rule requires data coming in from Elastic Defend.
123
124### Elastic Defend Integration Setup
125Elastic 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.
126
127#### Prerequisite Requirements:
128- Fleet is required for Elastic Defend.
129- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html).
130
131#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System:
132- Go to the Kibana home page and click "Add integrations".
133- In the query bar, search for "Elastic Defend" and select the integration to see more details about it.
134- Click "Add Elastic Defend".
135- Configure the integration name and optionally add a description.
136- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads".
137- 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).
138- We suggest selecting "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions"
139- 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.
140For more details on Elastic Agent configuration settings, refer to the [helper guide](https://www.elastic.co/guide/en/fleet/8.10/agent-policy.html).
141- Click "Save and Continue".
142- 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.
143For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html).
144"""
145severity = "medium"
146tags = [
147    "Domain: Endpoint",
148    "OS: Linux",
149    "Use Case: Threat Detection",
150    "Tactic: Command and Control",
151    "Data Source: Elastic Defend",
152    "Data Source: Elastic Endgame",
153    "Data Source: Crowdstrike",
154    "Data Source: SentinelOne",
155    "Resources: Investigation Guide",
156]
157timestamp_override = "event.ingested"
158type = "eql"
159
160query = '''
161process where host.os.type == "linux" and event.type == "start" and event.action in ("exec", "exec_event", "start", "ProcessRollup2") and (
162  (
163    // gost & pivotnacci - spawned without process.parent.name
164    (process.name == "gost" and process.args : ("-L*", "-C*", "-R*")) or (process.name == "pivotnacci")) or (
165    // ssh
166    (process.name in ("ssh", "sshd") and (process.args in ("-R", "-L", "-D", "-w") and process.args_count >= 4 and 
167     not process.args : "chmod")) or
168    // sshuttle
169    (process.name == "sshuttle" and process.args in ("-r", "--remote", "-l", "--listen") and process.args_count >= 4) or
170    // socat
171    (process.name == "socat" and process.args : ("TCP4-LISTEN:*", "SOCKS*") and process.args_count >= 3) or
172    // chisel
173    (process.name : "chisel*" and process.args in ("client", "server")) or
174    // iodine(d), dnscat, hans, ptunnel-ng, ssf, 3proxy & ngrok 
175    (process.name in ("iodine", "iodined", "dnscat", "hans", "hans-ubuntu", "ptunnel-ng", "ssf", "3proxy", "ngrok"))
176  ) and process.parent.name in ("bash", "dash", "ash", "sh", "tcsh", "csh", "zsh", "ksh", "fish")
177)
178'''
179
180
181[[rule.threat]]
182framework = "MITRE ATT&CK"
183[[rule.threat.technique]]
184id = "T1572"
185name = "Protocol Tunneling"
186reference = "https://attack.mitre.org/techniques/T1572/"
187
188
189[rule.threat.tactic]
190id = "TA0011"
191name = "Command and Control"
192reference = "https://attack.mitre.org/tactics/TA0011/"
...
toml

Attackers can leverage many utilities to clandestinely tunnel network communications and evade security measures, potentially gaining unauthorized access to sensitive systems.

This rule looks for several utilities that are capable of setting up tunnel network communications by analyzing process names or command line arguments.

Note: This investigation guide uses the Osquery Markdown Plugin introduced in Elastic Stack version 8.5.0. Older Elastic Stack versions will display unrendered Markdown in this guide. This investigation guide uses placeholder fields to dynamically pass alert data into Osquery queries. Placeholder fields were introduced in Elastic Stack version 8.7.0. If you're using Elastic Stack version 8.6.0 or earlier, you'll need to manually adjust this investigation guide's queries to ensure they properly run.

  • Identify any signs of suspicious network activity or anomalies that may indicate protocol tunneling. This could include unexpected traffic patterns or unusual network behavior.
    • Investigate listening ports and open sockets to look for potential protocol tunneling, reverse shells, or data exfiltration.
      • $osquery_0
      • $osquery_1
  • Identify the user account that performed the action, analyze it, and check whether it should perform this kind of action.
    • $osquery_2
  • Investigate whether the user is currently logged in and active.
    • $osquery_3
  • Investigate the script execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence and whether they are located in expected locations.
    • $osquery_4
    • $osquery_5
  • Investigate other alerts associated with the user/host during the past 48 hours.
    • If scripts or executables were dropped, retrieve the files and determine if they are malicious:
      • Use a private sandboxed malware analysis system to perform analysis.
        • Observe and collect information about the following activities:
          • Attempts to contact external domains and addresses.
            • Check if the domain is newly registered or unexpected.
            • Check the reputation of the domain or IP address.
          • File access, modification, and creation activities.
  • Potential Protocol Tunneling via Chisel Client - 3f12325a-4cc6-410b-8d4c-9fbbeb744cfd
  • Potential Protocol Tunneling via Chisel Server - ac8805f6-1e08-406c-962e-3937057fa86f
  • Potential Protocol Tunneling via EarthWorm - 9f1c4ca3-44b5-481d-ba42-32dc215a2769
  • Suspicious Utility Launched via ProxyChains - 6ace94ba-f02c-4d55-9f53-87d99b6f9af4
  • ProxyChains Activity - 4b868f1f-15ff-4ba3-8c11-d5a7a6356d37
  • If this activity is related to new benign software installation activity, consider adding exceptions — preferably with a combination of user and command line conditions.
  • If this activity is related to a system administrator or developer who uses port tunneling/forwarding for benign purposes, consider adding exceptions for specific user accounts or hosts.
  • Try to understand the context of the execution by thinking about the user, machine, or business purpose. A small number of endpoints, such as servers with unique software, might appear unusual but satisfy a specific business need.
  • Initiate the incident response process based on the outcome of the triage.
  • Isolate the involved host to prevent further post-compromise behavior.
  • If the triage identified malware, search the environment for additional compromised hosts.
    • Implement temporary network rules, procedures, and segmentation to contain the malware.
    • Stop suspicious processes.
    • Immediately block the identified indicators of compromise (IoCs).
    • Inspect the affected systems for additional malware backdoors, such as reverse shells, reverse proxies, or droppers, that attackers could use to reinfect the system.
  • Remove and block malicious artifacts identified during triage.
  • Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
  • Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
  • Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
  • Leverage the incident response data and logging to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).

References

Related rules

to-top