Potential Code Execution via Postgresql

This rule monitors for suspicious activities that may indicate an attacker attempting to execute arbitrary code within a PostgreSQL environment. Attackers can execute code via PostgreSQL as a result of gaining unauthorized access to a public facing PostgreSQL database or exploiting vulnerabilities, such as remote command execution and SQL injection attacks, which can result in unauthorized access and malicious actions, and facilitate post-exploitation activities for unauthorized access and malicious actions.

Elastic rule (View on GitHub)

 1[metadata]
 2creation_date = "2022/06/20"
 3integration = ["endpoint"]
 4maturity = "production"
 5min_stack_comments = "New fields added: required_fields, related_integrations, setup"
 6min_stack_version = "8.3.0"
 7updated_date = "2024/03/08"
 8
 9[rule]
10author = ["Elastic"]
11description = """
12This rule monitors for suspicious activities that may indicate an attacker attempting to execute arbitrary code within 
13a PostgreSQL environment. Attackers can execute code via PostgreSQL as a result of gaining unauthorized access to a
14public facing PostgreSQL database or exploiting vulnerabilities, such as remote command execution and SQL injection
15attacks, which can result in unauthorized access and malicious actions, and facilitate post-exploitation activities
16for unauthorized access and malicious actions.
17"""
18from = "now-9m"
19index = ["logs-endpoint.events.*", "endgame-*"]
20language = "eql"
21license = "Elastic License v2"
22name = "Potential Code Execution via Postgresql"
23risk_score = 47
24rule_id = "2a692072-d78d-42f3-a48a-775677d79c4e"
25setup = """## Setup
26
27This rule requires data coming in from Elastic Defend.
28
29### Elastic Defend Integration Setup
30Elastic 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.
31
32#### Prerequisite Requirements:
33- Fleet is required for Elastic Defend.
34- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html).
35
36#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System:
37- Go to the Kibana home page and click "Add integrations".
38- In the query bar, search for "Elastic Defend" and select the integration to see more details about it.
39- Click "Add Elastic Defend".
40- Configure the integration name and optionally add a description.
41- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads".
42- 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).
43- We suggest selecting "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions"
44- 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.
45For more details on Elastic Agent configuration settings, refer to the [helper guide](https://www.elastic.co/guide/en/fleet/8.10/agent-policy.html).
46- Click "Save and Continue".
47- 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.
48For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html).
49"""
50severity = "medium"
51tags = ["Domain: Endpoint",
52        "OS: Linux",
53        "Use Case: Threat Detection",
54        "Tactic: Execution",
55        "Data Source: Elastic Endgame",
56        "Data Source: Elastic Defend"
57        ]
58timestamp_override = "event.ingested"
59type = "eql"
60
61query = '''
62process where host.os.type == "linux" and event.type == "start" and event.action in ("exec", "exec_event", "fork", "fork_event") and 
63user.name == "postgres" and (
64  (process.parent.args : "*sh" and process.parent.args : "echo*") or 
65  (process.args : "*sh" and process.args : "echo*")
66) and not process.parent.name : "puppet"
67'''
68
69[[rule.threat]]
70framework = "MITRE ATT&CK"
71
72[[rule.threat.technique]]
73id = "T1059"
74name = "Command and Scripting Interpreter"
75reference = "https://attack.mitre.org/techniques/T1059/"
76
77[[rule.threat.technique.subtechnique]]
78id = "T1059.004"
79name = "Unix Shell"
80reference = "https://attack.mitre.org/techniques/T1059/004/"
81
82[rule.threat.tactic]
83id = "TA0002"
84name = "Execution"
85reference = "https://attack.mitre.org/tactics/TA0002/"

Related rules

to-top