Abnormal Process ID or Lock File Created

Identifies the creation of a Process ID (PID), lock or reboot file created in temporary file storage paradigm (tmpfs) directory /var/run. On Linux, the PID files typically hold the process ID to track previous copies running and manage other tasks. Certain Linux malware use the /var/run directory for holding data, executables and other tasks, disguising itself or these files as legitimate PID files.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2022/05/11"
  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 = "2024/02/20"
  8
  9[rule]
 10author = ["Elastic"]
 11description = """
 12Identifies the creation of a Process ID (PID), lock or reboot file created in temporary file storage paradigm (tmpfs)
 13directory /var/run. On Linux, the PID files typically hold the process ID to track previous copies running and manage
 14other tasks. Certain Linux malware use the /var/run directory for holding data, executables and other tasks, disguising
 15itself or these files as legitimate PID files.
 16"""
 17false_positives = [
 18    """
 19    False-Positives (FP) can appear if the PID file is legitimate and holding a process ID as intended. To
 20    differentiate, if the PID file is an executable or larger than 10 bytes, it should be ruled suspicious.
 21    """,
 22]
 23from = "now-9m"
 24index = ["logs-endpoint.events.*", "endgame-*"]
 25language = "kuery"
 26license = "Elastic License v2"
 27name = "Abnormal Process ID or Lock File Created"
 28note = """## Triage and analysis
 29
 30### Investigating Abnormal Process ID or Lock File Created
 31
 32Linux applications may need to save their process identification number (PID) for various purposes: from signaling that a program is running to serving as a signal that a previous instance of an application didn't exit successfully. PID files contain its creator process PID in an integer value.
 33
 34Linux lock files are used to coordinate operations in files so that conflicts and race conditions are prevented.
 35
 36This rule identifies the creation of PID, lock, or reboot files in the /var/run/ directory. Attackers can masquerade malware, payloads, staged data for exfiltration, and more as legitimate PID files.
 37
 38#### Possible investigation steps
 39
 40- Retrieve the file and determine if it is malicious:
 41    - Check the contents of the PID files. They should only contain integer strings.
 42    - Check the file type of the lock and PID files to determine if they are executables. This is only observed in     malicious files.
 43    - Check the size of the subject file. Legitimate PID files should be under 10 bytes.
 44    - Check if the lock or PID file has high entropy. This typically indicates an encrypted payload.
 45        - Analysts can use tools like `ent` to measure entropy.
 46    - Examine the reputation of the SHA-256 hash in the PID file. Use a database like VirusTotal to identify additional pivots and artifacts for investigation.
 47- Trace the file's creation to ensure it came from a legitimate or authorized process.
 48- Investigate other alerts associated with the user/host during the past 48 hours.
 49- Investigate any abnormal account behavior, such as command executions, file creations or modifications, and network connections.
 50- Investigate any abnormal behavior by the subject process such as network connections, file modifications, and any spawned child processes.
 51
 52### False positive analysis
 53
 54- False positives can appear if the PID file is legitimate and holding a process ID as intended. If the PID file is an executable or has a file size that's larger than 10 bytes, it should be ruled suspicious.
 55- If this activity is expected and noisy in your environment, consider adding exceptions — preferably with a combination of file name and process executable conditions.
 56
 57### Response and remediation
 58
 59- Initiate the incident response process based on the outcome of the triage.
 60- Isolate the involved host to prevent further post-compromise behavior.
 61- 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.
 62- Block the identified indicators of compromise (IoCs).
 63- Take actions to terminate processes and connections used by the attacker.
 64- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
 65- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
 66- 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).
 67"""
 68references = [
 69    "https://www.sandflysecurity.com/blog/linux-file-masquerading-and-malicious-pids-sandfly-1-2-6-update/",
 70    "https://twitter.com/GossiTheDog/status/1522964028284411907",
 71    "https://exatrack.com/public/Tricephalic_Hellkeeper.pdf",
 72    "https://www.elastic.co/security-labs/a-peek-behind-the-bpfdoor",
 73]
 74risk_score = 47
 75rule_id = "cac91072-d165-11ec-a764-f661ea17fbce"
 76setup = """## Setup
 77
 78This rule requires data coming in from Elastic Defend.
 79
 80### Elastic Defend Integration Setup
 81Elastic 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.
 82
 83#### Prerequisite Requirements:
 84- Fleet is required for Elastic Defend.
 85- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html).
 86
 87#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System:
 88- Go to the Kibana home page and click "Add integrations".
 89- In the query bar, search for "Elastic Defend" and select the integration to see more details about it.
 90- Click "Add Elastic Defend".
 91- Configure the integration name and optionally add a description.
 92- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads".
 93- 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).
 94- We suggest selecting "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions"
 95- 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.
 96For more details on Elastic Agent configuration settings, refer to the [helper guide](https://www.elastic.co/guide/en/fleet/8.10/agent-policy.html).
 97- Click "Save and Continue".
 98- 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.
 99For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html).
100"""
101severity = "medium"
102tags = [
103        "Domain: Endpoint",
104        "OS: Linux",
105        "Use Case: Threat Detection",
106        "Tactic: Execution",
107        "Threat: BPFDoor",
108        "Resources: Investigation Guide",
109        "Data Source: Elastic Defend",
110        "Data Source: Elastic Endgame"
111        ]
112timestamp_override = "event.ingested"
113type = "new_terms"
114
115query = '''
116host.os.type:linux and event.category:file and event.action:(creation or file_create_event) and
117user.id:0 and file.extension:(pid or lock or reboot) and file.path:(/var/run/* or /run/*) and (
118  (process.name : (
119    bash or dash or sh or tcsh or csh or zsh or ksh or fish or ash or touch or nano or vim or vi or editor or mv or cp)
120  ) or (
121  process.executable : (
122    ./* or /tmp/* or /var/tmp/* or /dev/shm/* or /var/run/* or /boot/* or /srv/* or /run/*
123  ))
124) and not process.name : (go or git or containerd* or snap-confine or cron or crond or sshd or unattended-upgrade or 
125vzctl or ifup or rpcbind or runc or gitlab-runner-helper or elastic-agent or metricbeat) and
126not file.name : (jem.*.pid)
127'''
128
129[[rule.threat]]
130framework = "MITRE ATT&CK"
131
132[[rule.threat.technique]]
133id = "T1106"
134name = "Native API"
135reference = "https://attack.mitre.org/techniques/T1106/"
136
137[rule.threat.tactic]
138id = "TA0002"
139name = "Execution"
140reference = "https://attack.mitre.org/tactics/TA0002/"
141
142[rule.new_terms]
143field = "new_terms_fields"
144value = ["host.id", "process.executable", "file.path"]
145
146[[rule.new_terms.history_window_start]]
147field = "history_window_start"
148value = "now-14d"

Triage and analysis

Investigating Abnormal Process ID or Lock File Created

Linux applications may need to save their process identification number (PID) for various purposes: from signaling that a program is running to serving as a signal that a previous instance of an application didn't exit successfully. PID files contain its creator process PID in an integer value.

Linux lock files are used to coordinate operations in files so that conflicts and race conditions are prevented.

This rule identifies the creation of PID, lock, or reboot files in the /var/run/ directory. Attackers can masquerade malware, payloads, staged data for exfiltration, and more as legitimate PID files.

Possible investigation steps

  • Retrieve the file and determine if it is malicious:
    • Check the contents of the PID files. They should only contain integer strings.
    • Check the file type of the lock and PID files to determine if they are executables. This is only observed in malicious files.
    • Check the size of the subject file. Legitimate PID files should be under 10 bytes.
    • Check if the lock or PID file has high entropy. This typically indicates an encrypted payload.
      • Analysts can use tools like ent to measure entropy.
    • Examine the reputation of the SHA-256 hash in the PID file. Use a database like VirusTotal to identify additional pivots and artifacts for investigation.
  • Trace the file's creation to ensure it came from a legitimate or authorized process.
  • 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

  • False positives can appear if the PID file is legitimate and holding a process ID as intended. If the PID file is an executable or has a file size that's larger than 10 bytes, it should be ruled suspicious.
  • If this activity is expected and noisy in your environment, consider adding exceptions — preferably with a combination of file name and process executable conditions.

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.
  • Block the identified indicators of compromise (IoCs).
  • 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