mirror of
https://github.com/elastic/protections-artifacts
synced 2026-06-08 14:02:19 +00:00
40 lines
1.0 KiB
TOML
40 lines
1.0 KiB
TOML
[rule]
|
|
description = "Identifies the execution of the EggShell backdoor. EggShell is a known post exploitation tool for macOS and Linux."
|
|
id = "feed7842-34a6-4764-b858-6e5ac01a5ab7"
|
|
license = "Elastic License v2"
|
|
name = "EggShell Backdoor Execution"
|
|
os_list = ["linux", "macos"]
|
|
reference = ["https://github.com/neoneggplant/EggShell"]
|
|
version = "1.0.9"
|
|
|
|
query = '''
|
|
process where event.action == "exec" and
|
|
process.executable : ("/private/tmp/*", "/tmp/*") and process.args : "eyJkZWJ1ZyI6*"
|
|
'''
|
|
|
|
[[actions]]
|
|
action = "kill_process"
|
|
field = "process.entity_id"
|
|
state = 0
|
|
|
|
[[threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[threat.technique]]
|
|
id = "T1059"
|
|
name = "Command and Scripting Interpreter"
|
|
reference = "https://attack.mitre.org/techniques/T1059/"
|
|
[[threat.technique.subtechnique]]
|
|
id = "T1059.004"
|
|
name = "Unix Shell"
|
|
reference = "https://attack.mitre.org/techniques/T1059/004/"
|
|
|
|
|
|
|
|
[threat.tactic]
|
|
id = "TA0002"
|
|
name = "Execution"
|
|
reference = "https://attack.mitre.org/tactics/TA0002/"
|
|
|
|
[internal]
|
|
min_endpoint_version = "7.15.0"
|