Private Key Searching Activity
This rule detects private key searching activity on Linux systems. Searching for private keys can be an indication of an attacker attempting to escalate privileges or exfiltrate sensitive information.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2024/11/04"
3integration = ["endpoint"]
4maturity = "production"
5updated_date = "2024/11/04"
6
7[rule]
8author = ["Elastic"]
9description = """
10This rule detects private key searching activity on Linux systems. Searching for private keys can be an indication of an
11attacker attempting to escalate privileges or exfiltrate sensitive information.
12"""
13from = "now-9m"
14index = ["logs-endpoint.events.*"]
15language = "eql"
16license = "Elastic License v2"
17name = "Private Key Searching Activity"
18risk_score = 21
19rule_id = "627374ab-7080-4e4d-8316-bef1122444af"
20setup = """## Setup
21
22This rule requires data coming in from Elastic Defend.
23
24### Elastic Defend Integration Setup
25Elastic 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.
26
27#### Prerequisite Requirements:
28- Fleet is required for Elastic Defend.
29- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html).
30
31#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System:
32- Go to the Kibana home page and click "Add integrations".
33- In the query bar, search for "Elastic Defend" and select the integration to see more details about it.
34- Click "Add Elastic Defend".
35- Configure the integration name and optionally add a description.
36- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads".
37- 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).
38- We suggest selecting "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions"
39- 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.
40For more details on Elastic Agent configuration settings, refer to the [helper guide](https://www.elastic.co/guide/en/fleet/8.10/agent-policy.html).
41- Click "Save and Continue".
42- 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.
43For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html).
44"""
45severity = "low"
46tags = [
47 "Domain: Endpoint",
48 "OS: Linux",
49 "Use Case: Threat Detection",
50 "Tactic: Discovery",
51 "Data Source: Elastic Defend"
52 ]
53timestamp_override = "event.ingested"
54type = "eql"
55query = '''
56process where host.os.type == "linux" and event.type == "start" and event.action == "exec" and process.name == "find" and
57process.command_line like ("*id_dsa*", "*id_rsa*", "*id_ed*", "*id_ecdsa*", "*id_xmss*", "*id_dh*") and
58process.command_line like ("*/home/*", "*/etc/ssh*", "*/root/*", "/")
59'''
60
61[[rule.threat]]
62framework = "MITRE ATT&CK"
63
64[rule.threat.tactic]
65id = "TA0007"
66name = "Discovery"
67reference = "https://attack.mitre.org/tactics/TA0007/"
Related rules
- Process Capability Enumeration
- Unusual Instance Metadata Service (IMDS) API Request
- Suspicious Memory grep Activity
- Security Software Discovery via Grep
- ESXI Discovery via Find