Cupsd or Foomatic-rip Shell Execution
This detection rule addresses multiple vulnerabilities in the CUPS printing system, including CVE-2024-47176, CVE-2024-47076, CVE-2024-47175, and CVE-2024-47177. Specifically, this rule detects shell executions from the foomatic-rip parent process. These flaws impact components like cups-browsed, libcupsfilters, libppd, and foomatic-rip, allowing remote unauthenticated attackers to manipulate IPP URLs or inject malicious data through crafted UDP packets or network spoofing. This can result in arbitrary command execution when a print job is initiated.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2024/09/27"
3integration = ["endpoint", "crowdstrike", "sentinel_one_cloud_funnel"]
4maturity = "production"
5updated_date = "2025/03/20"
6
7[rule]
8author = ["Elastic"]
9description = """
10This detection rule addresses multiple vulnerabilities in the CUPS printing system, including CVE-2024-47176,
11CVE-2024-47076, CVE-2024-47175, and CVE-2024-47177. Specifically, this rule detects shell executions from the
12foomatic-rip parent process. These flaws impact components like cups-browsed, libcupsfilters, libppd, and foomatic-rip,
13allowing remote unauthenticated attackers to manipulate IPP URLs or inject malicious data through crafted UDP packets or
14network spoofing. This can result in arbitrary command execution when a print job is initiated.
15"""
16from = "now-9m"
17index = [
18 "endgame-*",
19 "logs-crowdstrike.fdr*",
20 "logs-endpoint.events.process*",
21 "logs-sentinel_one_cloud_funnel.*",
22]
23language = "eql"
24license = "Elastic License v2"
25name = "Cupsd or Foomatic-rip Shell Execution"
26note = """## Triage and analysis
27
28### Investigating Cupsd or Foomatic-rip Shell Execution
29
30This rule identifies potential exploitation attempts of several vulnerabilities in the CUPS printing system (CVE-2024-47176, CVE-2024-47076, CVE-2024-47175, CVE-2024-47177). These vulnerabilities allow attackers to send crafted IPP requests or manipulate UDP packets to execute arbitrary commands or modify printer configurations. Attackers can exploit these flaws to inject malicious data, leading to Remote Code Execution (RCE) on affected systems.
31
32#### Possible Investigation Steps
33
34- Investigate the incoming IPP requests or UDP packets targeting port 631.
35- Examine the printer configurations on the system to determine if any unauthorized printers or URLs have been added.
36- Investigate the process tree to check if any unexpected processes were triggered as a result of IPP activity. Review the executable files for legitimacy.
37- Check for additional alerts related to the compromised system or user within the last 48 hours.
38- Investigate network traffic logs for suspicious outbound connections to unrecognized domains or IP addresses.
39- Check if any of the contacted domains or addresses are newly registered or have a suspicious reputation.
40- Retrieve any scripts or executables dropped by the attack for further analysis in a private sandbox environment:
41- Analyze potential malicious activity, including:
42 - Attempts to communicate with external servers.
43 - File access or creation of unauthorized executables.
44 - Cron jobs, services, or other persistence mechanisms.
45
46### Related Rules
47- Printer User (lp) Shell Execution - f86cd31c-5c7e-4481-99d7-6875a3e31309
48- Network Connection by Cups or Foomatic-rip Child - e80ee207-9505-49ab-8ca8-bc57d80e2cab
49- File Creation by Cups or Foomatic-rip Child - b9b14be7-b7f4-4367-9934-81f07d2f63c4
50- Suspicious Execution from Foomatic-rip or Cupsd Parent - 986361cd-3dac-47fe-afa1-5c5dd89f2fb4
51
52### False Positive Analysis
53
54- This activity is rarely legitimate. However, verify the context to rule out non-malicious printer configuration changes or legitimate IPP requests.
55
56### Response and Remediation
57
58- Initiate the incident response process based on the triage outcome.
59- Isolate the compromised host to prevent further exploitation.
60- If the investigation confirms malicious activity, search the environment for additional compromised hosts.
61- Implement network segmentation or restrictions to contain the attack.
62- Stop suspicious processes or services tied to CUPS exploitation.
63- Block identified Indicators of Compromise (IoCs), including IP addresses, domains, or hashes of involved files.
64- Review compromised systems for backdoors, such as reverse shells or persistence mechanisms like cron jobs.
65- Investigate potential credential exposure on compromised systems and reset passwords for any affected accounts.
66- Restore the original printer configurations or uninstall unauthorized printer entries.
67- Perform a thorough antimalware scan to identify any lingering threats or artifacts from the attack.
68- Investigate how the attacker gained initial access and address any weaknesses to prevent future exploitation.
69- Use insights from the incident to improve detection and response times in future incidents (MTTD and MTTR).
70"""
71references = [
72 "https://www.elastic.co/security-labs/cups-overflow",
73 "https://www.evilsocket.net/2024/09/26/Attacking-UNIX-systems-via-CUPS-Part-I/",
74 "https://gist.github.com/stong/c8847ef27910ae344a7b5408d9840ee1",
75 "https://github.com/RickdeJager/cupshax/blob/main/cupshax.py",
76]
77risk_score = 73
78rule_id = "476267ff-e44f-476e-99c1-04c78cb3769d"
79setup = """## Setup
80
81This rule requires data coming in from Elastic Defend.
82
83### Elastic Defend Integration Setup
84Elastic 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.
85
86#### Prerequisite Requirements:
87- Fleet is required for Elastic Defend.
88- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html).
89
90#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System:
91- Go to the Kibana home page and click "Add integrations".
92- In the query bar, search for "Elastic Defend" and select the integration to see more details about it.
93- Click "Add Elastic Defend".
94- Configure the integration name and optionally add a description.
95- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads".
96- 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).
97- We suggest selecting "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions"
98- 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.
99For more details on Elastic Agent configuration settings, refer to the [helper guide](https://www.elastic.co/guide/en/fleet/8.10/agent-policy.html).
100- Click "Save and Continue".
101- 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.
102For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html).
103"""
104severity = "high"
105tags = [
106 "Domain: Endpoint",
107 "OS: Linux",
108 "Use Case: Threat Detection",
109 "Use Case: Vulnerability",
110 "Tactic: Execution",
111 "Data Source: Elastic Defend",
112 "Data Source: Crowdstrike",
113 "Data Source: SentinelOne",
114 "Data Source: Elastic Endgame",
115 "Resources: Investigation Guide",
116]
117timestamp_override = "event.ingested"
118type = "eql"
119
120query = '''
121process where host.os.type == "linux" and event.type == "start" and
122 event.action in ("exec", "exec_event", "start", "ProcessRollup2") and process.parent.name == "foomatic-rip" and
123 process.name in ("bash", "dash", "sh", "tcsh", "csh", "zsh", "ksh", "fish") and not (
124 process.command_line like (
125 "*/tmp/foomatic-*", "*-sDEVICE=ps2write*", "*printf*", "/bin/sh -e -c cat", "/bin/bash -c cat",
126 "/bin/bash -e -c cat"
127 ) or
128 process.args like "gs*"
129 )
130'''
131
132
133[[rule.threat]]
134framework = "MITRE ATT&CK"
135[[rule.threat.technique]]
136id = "T1203"
137name = "Exploitation for Client Execution"
138reference = "https://attack.mitre.org/techniques/T1203/"
139
140
141[rule.threat.tactic]
142id = "TA0002"
143name = "Execution"
144reference = "https://attack.mitre.org/tactics/TA0002/"
Triage and analysis
Investigating Cupsd or Foomatic-rip Shell Execution
This rule identifies potential exploitation attempts of several vulnerabilities in the CUPS printing system (CVE-2024-47176, CVE-2024-47076, CVE-2024-47175, CVE-2024-47177). These vulnerabilities allow attackers to send crafted IPP requests or manipulate UDP packets to execute arbitrary commands or modify printer configurations. Attackers can exploit these flaws to inject malicious data, leading to Remote Code Execution (RCE) on affected systems.
Possible Investigation Steps
- Investigate the incoming IPP requests or UDP packets targeting port 631.
- Examine the printer configurations on the system to determine if any unauthorized printers or URLs have been added.
- Investigate the process tree to check if any unexpected processes were triggered as a result of IPP activity. Review the executable files for legitimacy.
- Check for additional alerts related to the compromised system or user within the last 48 hours.
- Investigate network traffic logs for suspicious outbound connections to unrecognized domains or IP addresses.
- Check if any of the contacted domains or addresses are newly registered or have a suspicious reputation.
- Retrieve any scripts or executables dropped by the attack for further analysis in a private sandbox environment:
- Analyze potential malicious activity, including:
- Attempts to communicate with external servers.
- File access or creation of unauthorized executables.
- Cron jobs, services, or other persistence mechanisms.
Related Rules
- Printer User (lp) Shell Execution - f86cd31c-5c7e-4481-99d7-6875a3e31309
- Network Connection by Cups or Foomatic-rip Child - e80ee207-9505-49ab-8ca8-bc57d80e2cab
- File Creation by Cups or Foomatic-rip Child - b9b14be7-b7f4-4367-9934-81f07d2f63c4
- Suspicious Execution from Foomatic-rip or Cupsd Parent - 986361cd-3dac-47fe-afa1-5c5dd89f2fb4
False Positive Analysis
- This activity is rarely legitimate. However, verify the context to rule out non-malicious printer configuration changes or legitimate IPP requests.
Response and Remediation
- Initiate the incident response process based on the triage outcome.
- Isolate the compromised host to prevent further exploitation.
- If the investigation confirms malicious activity, search the environment for additional compromised hosts.
- Implement network segmentation or restrictions to contain the attack.
- Stop suspicious processes or services tied to CUPS exploitation.
- Block identified Indicators of Compromise (IoCs), including IP addresses, domains, or hashes of involved files.
- Review compromised systems for backdoors, such as reverse shells or persistence mechanisms like cron jobs.
- Investigate potential credential exposure on compromised systems and reset passwords for any affected accounts.
- Restore the original printer configurations or uninstall unauthorized printer entries.
- Perform a thorough antimalware scan to identify any lingering threats or artifacts from the attack.
- Investigate how the attacker gained initial access and address any weaknesses to prevent future exploitation.
- Use insights from the incident to improve detection and response times in future incidents (MTTD and MTTR).
References
Related rules
- Suspicious Execution from Foomatic-rip or Cupsd Parent
- Git Hook Child Process
- Manual Dracut Execution
- Netcat Listener Established via rlwrap
- Potential Hex Payload Execution