Suspicious Network Activity to the Internet by Previously Unknown Executable

This rule monitors for network connectivity to the internet from a previously unknown executable located in a suspicious directory to a previously unknown destination ip. An alert from this rule can indicate the presence of potentially malicious activity, such as the execution of unauthorized or suspicious processes attempting to establish connections to unknown or suspicious destinations such as a command and control server. Detecting and investigating such behavior can help identify and mitigate potential security threats, protecting the system and its data from potential compromise.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2023/06/14"
  3integration = ["endpoint"]
  4maturity = "production"
  5min_stack_comments = "Multiple field support in the New Terms rule type was added in Elastic 8.6"
  6min_stack_version = "8.6.0"
  7updated_date = "2023/12/12"
  8
  9[transform]
 10[[transform.osquery]]
 11label = "Osquery - Retrieve Listening Ports"
 12query = "SELECT pid, address, port, socket, protocol, path FROM listening_ports"
 13
 14[[transform.osquery]]
 15label = "Osquery - Retrieve Open Sockets"
 16query = "SELECT pid, family, remote_address, remote_port, socket, state FROM process_open_sockets"
 17
 18[[transform.osquery]]
 19label = "Osquery - Retrieve Information for a Specific User"
 20query = "SELECT * FROM users WHERE username = {{user.name}}"
 21
 22[[transform.osquery]]
 23label = "Osquery - Investigate the Account Authentication Status"
 24query = "SELECT * FROM logged_in_users WHERE user = {{user.name}}"
 25
 26[[transform.osquery]]
 27label = "Osquery - Retrieve Running Processes by User"
 28query = "SELECT pid, username, name FROM processes p JOIN users u ON u.uid = p.uid ORDER BY username"
 29
 30[[transform.osquery]]
 31label = "Osquery - Retrieve Process Info"
 32query = "SELECT name, cmdline, parent, path, uid FROM processes"
 33
 34[rule]
 35author = ["Elastic"]
 36description = """
 37This rule monitors for network connectivity to the internet from a previously unknown executable located in a suspicious
 38directory to a previously unknown destination ip. An alert from this rule can indicate the presence of potentially
 39malicious activity, such as the execution of unauthorized or suspicious processes attempting to establish connections to
 40unknown or suspicious destinations such as a command and control server. Detecting and investigating such behavior can
 41help identify and mitigate potential security threats, protecting the system and its data from potential compromise.
 42"""
 43from = "now-59m"
 44index = ["auditbeat-*", "filebeat-*", "packetbeat-*", "logs-endpoint.events.*", "endgame-*"]
 45language = "kuery"
 46license = "Elastic License v2"
 47name = "Suspicious Network Activity to the Internet by Previously Unknown Executable"
 48note = """## Triage and analysis
 49
 50### Investigating Suspicious Network Activity to the Internet by Previously Unknown Executable
 51
 52After being installed, malware will often call out to its command and control server to receive further instructions by its operators.
 53
 54This rule leverages the new terms rule type to detect previously unknown processes, initiating network connections to external IP-addresses. 
 55
 56> **Note**:
 57> This investigation guide uses the [Osquery Markdown Plugin](https://www.elastic.co/guide/en/security/master/invest-guide-run-osquery.html) introduced in Elastic Stack version 8.5.0. Older Elastic Stack versions will display unrendered Markdown in this guide.
 58> 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.
 59
 60#### Possible investigation steps
 61
 62- Identify any signs of suspicious network activity or anomalies that may indicate malicious behavior. This could include unexpected traffic patterns or unusual network behavior.
 63  - Investigate listening ports and open sockets to look for potential malicious processes, reverse shells or data exfiltration.
 64    - $osquery_0
 65    - $osquery_1
 66- Identify the user account that performed the action, analyze it, and check whether it should perform this kind of action.
 67  - $osquery_2
 68- Investigate whether the user is currently logged in and active.
 69  - $osquery_3
 70- 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.
 71  - $osquery_4
 72  - $osquery_5
 73- Investigate other alerts associated with the user/host during the past 48 hours.
 74  - If scripts or executables were dropped, retrieve the files and determine if they are malicious:
 75    - Use a private sandboxed malware analysis system to perform analysis.
 76      - Observe and collect information about the following activities:
 77        - Attempts to contact external domains and addresses.
 78          - Check if the domain is newly registered or unexpected.
 79          - Check the reputation of the domain or IP address.
 80        - File access, modification, and creation activities.
 81
 82### Related rules
 83
 84- Network Activity Detected via cat - afd04601-12fc-4149-9b78-9c3f8fe45d39
 85
 86### False positive analysis
 87
 88- If this activity is related to new benign software installation activity, consider adding exceptions — preferably with a combination of user and command line conditions.
 89- 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.
 90
 91### Response and remediation
 92
 93- Initiate the incident response process based on the outcome of the triage.
 94- Isolate the involved host to prevent further post-compromise behavior.
 95- If the triage identified malware, search the environment for additional compromised hosts.
 96  - Implement temporary network rules, procedures, and segmentation to contain the malware.
 97  - Stop suspicious processes.
 98  - Immediately block the identified indicators of compromise (IoCs).
 99  - Inspect the affected systems for additional malware backdoors, such as reverse shells, reverse proxies, or droppers, that attackers could use to reinfect the system.
100- Remove and block malicious artifacts identified during triage.
101- 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.
102- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
103- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
104- Leverage the incident response data and logging to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
105"""
106risk_score = 21
107rule_id = "53617418-17b4-4e9c-8a2c-8deb8086ca4b"
108setup = """## Setup
109
110This rule requires data coming in from one of the following integrations:
111- Elastic Defend
112- Auditbeat
113- Filebeat
114- Packetbeat
115
116
117### Elastic Defend Integration Setup
118Elastic Defend is integrated into the Elastic Agent using Fleet. Upon configuration, the integration allows
119the Elastic Agent to monitor events on your host and send data to the Elastic Security app.
120
121#### Prerequisite Requirements:
122- Fleet is required for Elastic Defend.
123- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html).
124
125#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System:
126- Go to the Kibana home page and click "Add integrations".
127- In the query bar, search for "Elastic Defend" and select the integration to see more details about it.
128- Click "Add Elastic Defend".
129- Configure the integration name and optionally add a description.
130- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads".
131- 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).
132- We suggest to select "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions"
133- 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.
134For more details on Elastic Agent configuration settings, refer to the [helper guide](https://www.elastic.co/guide/en/fleet/8.10/agent-policy.html).
135- Click "Save and Continue".
136- 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.
137For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html).
138
139### Auditbeat Setup
140Auditbeat is a lightweight shipper that you can install on your servers to audit the activities of users and processes on your systems. For example, you can use Auditbeat to collect and centralize audit events from the Linux Audit Framework. You can also use Auditbeat to detect changes to critical files, like binaries and configuration files, and identify potential security policy violations.
141
142#### The following steps should be executed in order to add the Auditbeat on a Linux System:
143- Elastic provides repositories available for APT and YUM-based distributions. Note that we provide binary packages, but no source packages.
144- To install the APT and YUM repositories follow the setup instructions in this [helper guide](https://www.elastic.co/guide/en/beats/auditbeat/current/setup-repositories.html).
145- To run Auditbeat on Docker follow the setup instructions in the [helper guide](https://www.elastic.co/guide/en/beats/auditbeat/current/running-on-docker.html).
146- To run Auditbeat on Kubernetes follow the setup instructions in the [helper guide](https://www.elastic.co/guide/en/beats/auditbeat/current/running-on-kubernetes.html).
147- For complete “Setup and Run Auditbeat” information refer to the [helper guide](https://www.elastic.co/guide/en/beats/auditbeat/current/setting-up-and-running.html).
148
149### Filebeat Setup
150Filebeat is a lightweight shipper for forwarding and centralizing log data. Installed as an agent on your servers, Filebeat monitors the log files or locations that you specify, collects log events, and forwards them either to Elasticsearch or Logstash for indexing.
151
152#### The following steps should be executed in order to add the Filebeat on a Linux System:
153- Elastic provides repositories available for APT and YUM-based distributions. Note that we provide binary packages, but no source packages.
154- To install the APT and YUM repositories follow the setup instructions in this [helper guide](https://www.elastic.co/guide/en/beats/filebeat/current/setup-repositories.html).
155- To run Filebeat on Docker follow the setup instructions in the [helper guide](https://www.elastic.co/guide/en/beats/filebeat/current/running-on-docker.html).
156- To run Filebeat on Kubernetes follow the setup instructions in the [helper guide](https://www.elastic.co/guide/en/beats/filebeat/current/running-on-kubernetes.html).
157- For quick start information for Filebeat refer to the [helper guide](https://www.elastic.co/guide/en/beats/filebeat/8.11/filebeat-installation-configuration.html).
158- For complete “Setup and Run Filebeat” information refer to the [helper guide](https://www.elastic.co/guide/en/beats/filebeat/current/setting-up-and-running.html).
159
160### Packetbeat Setup
161Packetbeat is a real-time network packet analyzer that you can use for application monitoring, performance analytics, and threat detection. Packetbeat works by capturing the network traffic between your application servers, decoding the application layer protocols (HTTP, MySQL, Redis, and so on), correlating the requests with the responses, and recording the interesting fields for each transaction.
162
163#### The following steps should be executed in order to add the Packetbeat on a  Linux System:
164- Elastic provides repositories available for APT and YUM-based distributions. Note that we provide binary packages, but no source packages.
165- To install the APT and YUM repositories follow the setup instructions in this [helper guide](https://www.elastic.co/guide/en/beats/packetbeat/current/setup-repositories.html).
166- To run Packetbeat on Docker follow the setup instructions in the [helper guide](https://www.elastic.co/guide/en/beats/packetbeat/current/running-on-docker.html).
167- For quick start information for Packetbeat refer to the [helper guide](https://www.elastic.co/guide/en/beats/packetbeat/current/packetbeat-installation-configuration.html).
168- For complete “Setup and Run Packetbeat” information refer to the [helper guide](https://www.elastic.co/guide/en/beats/packetbeat/current/setting-up-and-running.html).
169"""
170severity = "low"
171tags = [
172        "Domain: Endpoint",
173        "OS: Linux",
174        "Use Case: Threat Detection",
175        "Tactic: Command and Control",
176        "Data Source: Elastic Endgame",
177        "Data Source: Elastic Defend"
178        ]
179timestamp_override = "event.ingested"
180type = "new_terms"
181
182query = '''
183host.os.type:linux and event.category:network and event.action:(connection_attempted or ipv4_connection_attempt_event) and 
184process.executable:(
185  (/etc/crontab or /etc/rc.local or ./* or /boot/* or /dev/shm/* or /etc/cron.*/* or /etc/init.d/* or /etc/rc*.d/* or 
186   /etc/update-motd.d/* or /home/*/.* or /run/* or /srv/* or /tmp/* or /usr/lib/update-notifier/* or /var/tmp/*
187  ) and not (/tmp/newroot/* or /tmp/snap.rootfs*)
188 ) and 
189source.ip:(10.0.0.0/8 or 127.0.0.0/8 or 172.16.0.0/12 or 192.168.0.0/16) and 
190not process.name:(
191 apt or chrome or curl or dnf or dockerd or dpkg or firefox-bin or java or kite-update or kited or node or rpm or
192 saml2aws or wget or yum or ansible* or aws* or php* or pip* or python* or steam* or terraform*
193) and 
194not destination.ip:(
195   10.0.0.0/8 or 100.64.0.0/10 or 127.0.0.0/8 or 169.254.0.0/16 or 172.16.0.0/12 or 192.0.0.0/24 or 192.0.0.0/29 or 
196   192.0.0.10/32 or 192.0.0.170/32 or 192.0.0.171/32 or 192.0.0.8/32 or 192.0.0.9/32 or 192.0.2.0/24 or 
197   192.168.0.0/16 or 192.175.48.0/24 or 192.31.196.0/24 or 192.52.193.0/24 or 192.88.99.0/24 or 198.18.0.0/15 or 
198   198.51.100.0/24 or 203.0.113.0/24 or 224.0.0.0/4 or 240.0.0.0/4 or "::1" or "FE80::/10" or "FF00::/8" or 0.0.0.0
199) and
200not destination.port:(22 or 80 or 443)
201'''
202
203[[rule.threat]]
204framework = "MITRE ATT&CK"
205
206[[rule.threat.technique]]
207id = "T1071"
208name = "Application Layer Protocol"
209reference = "https://attack.mitre.org/techniques/T1071/"
210
211[rule.threat.tactic]
212id = "TA0011"
213name = "Command and Control"
214reference = "https://attack.mitre.org/tactics/TA0011/"
215
216[rule.new_terms]
217field = "new_terms_fields"
218value = ["host.id", "destination.ip", "process.executable"]
219
220[[rule.new_terms.history_window_start]]
221field = "history_window_start"
222value = "now-14d"

Triage and analysis

Investigating Suspicious Network Activity to the Internet by Previously Unknown Executable

After being installed, malware will often call out to its command and control server to receive further instructions by its operators.

This rule leverages the new terms rule type to detect previously unknown processes, initiating network connections to external IP-addresses.

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.

Possible investigation steps

  • Identify any signs of suspicious network activity or anomalies that may indicate malicious behavior. This could include unexpected traffic patterns or unusual network behavior.
    • Investigate listening ports and open sockets to look for potential malicious processes, 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.
  • Network Activity Detected via cat - afd04601-12fc-4149-9b78-9c3f8fe45d39

False positive analysis

  • If this activity is related to new benign software installation activity, consider adding exceptions — preferably with a combination of user and command line conditions.
  • 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.

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.
  • 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).

Related rules

to-top