Potential Reverse Shell Activity via Terminal

Identifies the execution of a shell process with suspicious arguments which may be indicative of reverse shell activity.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2020/01/07"
  3integration = ["endpoint"]
  4maturity = "production"
  5updated_date = "2024/05/21"
  6
  7[rule]
  8author = ["Elastic"]
  9description = "Identifies the execution of a shell process with suspicious arguments which may be indicative of reverse shell activity."
 10from = "now-9m"
 11index = ["auditbeat-*", "logs-endpoint.events.*"]
 12language = "eql"
 13license = "Elastic License v2"
 14name = "Potential Reverse Shell Activity via Terminal"
 15note = """## Triage and analysis
 16
 17### Investigating Potential Reverse Shell Activity via Terminal
 18
 19A reverse shell is a mechanism that's abused to connect back to an attacker-controlled system. It effectively redirects the system's input and output and delivers a fully functional remote shell to the attacker. Even private systems are vulnerable since the connection is outgoing. This activity is typically the result of vulnerability exploitation, malware infection, or penetration testing.
 20
 21This rule identifies commands that are potentially related to reverse shell activities using shell applications.
 22
 23#### Possible investigation steps
 24
 25- Examine the command line and extract the target domain or IP address information.
 26  - Check if the domain is newly registered or unexpected.
 27  - Check the reputation of the domain or IP address.
 28  - Scope other potentially compromised hosts in your environment by mapping hosts that also communicated with the domain or IP address.
 29- Investigate other alerts associated with the user/host during the past 48 hours.
 30- Investigate any abnormal account behavior, such as command executions, file creations or modifications, and network connections.
 31- Investigate any abnormal behavior by the subject process such as network connections, file modifications, and any spawned child processes.
 32
 33### False positive analysis
 34
 35- This activity is unlikely to happen legitimately. Any activity that triggered the alert and is not inherently malicious must be monitored by the security team.
 36
 37### Response and remediation
 38
 39- Initiate the incident response process based on the outcome of the triage.
 40- Isolate the involved host to prevent further post-compromise behavior.
 41- 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.
 42- Take actions to terminate processes and connections used by the attacker.
 43- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
 44- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
 45- Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
 46"""
 47references = [
 48    "https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/Methodology%20and%20Resources/Reverse%20Shell%20Cheatsheet.md",
 49    "https://github.com/WangYihang/Reverse-Shell-Manager",
 50    "https://www.netsparker.com/blog/web-security/understanding-reverse-shells/",
 51]
 52risk_score = 73
 53rule_id = "a1a0375f-22c2-48c0-81a4-7c2d11cc6856"
 54setup = """## Setup
 55
 56If enabling an EQL rule on a non-elastic-agent index (such as beats) for versions <8.2,
 57events will not define `event.ingested` and default fallback for EQL rules was not added until version 8.2.
 58Hence for this rule to work effectively, users will need to add a custom ingest pipeline to populate
 59`event.ingested` to @timestamp.
 60For more details on adding a custom ingest pipeline refer - https://www.elastic.co/guide/en/fleet/current/data-streams-pipeline-tutorial.html
 61"""
 62severity = "high"
 63tags = [
 64    "Domain: Endpoint",
 65    "OS: Linux",
 66    "OS: macOS",
 67    "Use Case: Threat Detection",
 68    "Tactic: Execution",
 69    "Resources: Investigation Guide",
 70    "Data Source: Elastic Defend",
 71]
 72timestamp_override = "event.ingested"
 73type = "eql"
 74
 75query = '''
 76process where event.type in ("start", "process_started") and
 77  process.name in ("sh", "bash", "zsh", "dash", "zmodload") and
 78  process.args : ("*/dev/tcp/*", "*/dev/udp/*", "*zsh/net/tcp*", "*zsh/net/udp*") and
 79
 80  /* noisy FPs */
 81  not (process.parent.name : "timeout" and process.executable : "/var/lib/docker/overlay*") and
 82  not process.command_line : (
 83    "*/dev/tcp/sirh_db/*", "*/dev/tcp/remoteiot.com/*", "*dev/tcp/elk.stag.one/*", "*dev/tcp/kafka/*",
 84    "*/dev/tcp/$0/$1*", "*/dev/tcp/127.*", "*/dev/udp/127.*", "*/dev/tcp/localhost/*", "*/dev/tcp/itom-vault/*") and
 85  not process.parent.command_line : "runc init"
 86'''
 87
 88
 89[[rule.threat]]
 90framework = "MITRE ATT&CK"
 91[[rule.threat.technique]]
 92id = "T1059"
 93name = "Command and Scripting Interpreter"
 94reference = "https://attack.mitre.org/techniques/T1059/"
 95
 96
 97[rule.threat.tactic]
 98id = "TA0002"
 99name = "Execution"
100reference = "https://attack.mitre.org/tactics/TA0002/"

Triage and analysis

Investigating Potential Reverse Shell Activity via Terminal

A reverse shell is a mechanism that's abused to connect back to an attacker-controlled system. It effectively redirects the system's input and output and delivers a fully functional remote shell to the attacker. Even private systems are vulnerable since the connection is outgoing. This activity is typically the result of vulnerability exploitation, malware infection, or penetration testing.

This rule identifies commands that are potentially related to reverse shell activities using shell applications.

Possible investigation steps

  • Examine the command line and extract the target domain or IP address information.
    • Check if the domain is newly registered or unexpected.
    • Check the reputation of the domain or IP address.
    • Scope other potentially compromised hosts in your environment by mapping hosts that also communicated with the domain or IP address.
  • Investigate other alerts associated with the user/host during the past 48 hours.
  • Investigate any abnormal account behavior, such as command executions, file creations or modifications, and network connections.
  • Investigate any abnormal behavior by the subject process such as network connections, file modifications, and any spawned child processes.

False positive analysis

  • This activity is unlikely to happen legitimately. Any activity that triggered the alert and is not inherently malicious must be monitored by the security team.

Response and remediation

  • Initiate the incident response process based on the outcome of the triage.
  • Isolate the involved host to prevent further post-compromise behavior.
  • 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.
  • Take actions to terminate processes and connections used by the attacker.
  • 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.
  • Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).

References

Related rules

to-top