2021-01-28 19:46:30 +01:00
|
|
|
[metadata]
|
|
|
|
|
creation_date = "2020/12/21"
|
2023-01-04 09:30:07 -05:00
|
|
|
integration = ["endpoint"]
|
2021-01-28 19:46:30 +01:00
|
|
|
maturity = "production"
|
2022-08-24 10:38:49 -06:00
|
|
|
min_stack_comments = "New fields added: required_fields, related_integrations, setup"
|
|
|
|
|
min_stack_version = "8.3.0"
|
2023-03-05 09:41:19 -09:00
|
|
|
updated_date = "2023/02/22"
|
2021-01-28 19:46:30 +01:00
|
|
|
|
|
|
|
|
[rule]
|
|
|
|
|
author = ["Elastic"]
|
|
|
|
|
description = """
|
|
|
|
|
Adversaries may modify SSH related binaries for persistence or credential access by patching sensitive functions to
|
|
|
|
|
enable unauthorized access or by logging SSH credentials for exfiltration.
|
|
|
|
|
"""
|
2021-02-17 19:49:58 -09:00
|
|
|
false_positives = [
|
|
|
|
|
"Trusted OpenSSH executable updates. It's recommended to verify the integrity of OpenSSH binary changes.",
|
|
|
|
|
]
|
2021-01-28 19:46:30 +01:00
|
|
|
from = "now-9m"
|
2023-01-23 20:53:15 -03:00
|
|
|
index = ["auditbeat-*", "logs-endpoint.events.*", "endgame-*"]
|
2021-01-28 19:46:30 +01:00
|
|
|
language = "kuery"
|
2021-03-03 22:12:11 -09:00
|
|
|
license = "Elastic License v2"
|
2021-01-28 19:46:30 +01:00
|
|
|
name = "Modification of OpenSSH Binaries"
|
|
|
|
|
references = ["https://blog.angelalonso.es/2016/09/anatomy-of-real-linux-intrusion-part-ii.html"]
|
|
|
|
|
risk_score = 47
|
|
|
|
|
rule_id = "0415f22a-2336-45fa-ba07-618a5942e22c"
|
|
|
|
|
severity = "medium"
|
2023-01-27 19:51:22 +00:00
|
|
|
tags = ["Elastic", "Host", "Linux", "Threat Detection", "Credential Access", "Persistence", "Lateral Movement", "Elastic Endgame"]
|
2021-02-17 19:49:58 -09:00
|
|
|
timestamp_override = "event.ingested"
|
2021-01-28 19:46:30 +01:00
|
|
|
type = "query"
|
|
|
|
|
|
|
|
|
|
query = '''
|
2023-03-05 09:41:19 -09:00
|
|
|
event.category:file and host.os.type:linux and event.type:change and
|
2021-01-28 19:46:30 +01:00
|
|
|
process.name:* and
|
|
|
|
|
(file.path:(/usr/sbin/sshd or /usr/bin/ssh or /usr/bin/sftp or /usr/bin/scp) or file.name:libkeyutils.so) and
|
2022-07-29 21:55:49 +05:30
|
|
|
not process.name:("dpkg" or "yum" or "dnf" or "dnf-automatic")
|
2021-01-28 19:46:30 +01:00
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[rule.threat]]
|
|
|
|
|
framework = "MITRE ATT&CK"
|
|
|
|
|
[[rule.threat.technique]]
|
|
|
|
|
id = "T1543"
|
|
|
|
|
name = "Create or Modify System Process"
|
|
|
|
|
reference = "https://attack.mitre.org/techniques/T1543/"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[rule.threat.tactic]
|
|
|
|
|
id = "TA0003"
|
|
|
|
|
name = "Persistence"
|
|
|
|
|
reference = "https://attack.mitre.org/tactics/TA0003/"
|
2023-01-27 19:51:22 +00:00
|
|
|
|
2021-01-28 19:46:30 +01:00
|
|
|
[[rule.threat]]
|
|
|
|
|
framework = "MITRE ATT&CK"
|
|
|
|
|
[[rule.threat.technique]]
|
|
|
|
|
id = "T1556"
|
|
|
|
|
name = "Modify Authentication Process"
|
|
|
|
|
reference = "https://attack.mitre.org/techniques/T1556/"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[rule.threat.tactic]
|
|
|
|
|
id = "TA0006"
|
|
|
|
|
name = "Credential Access"
|
|
|
|
|
reference = "https://attack.mitre.org/tactics/TA0006/"
|
2021-02-17 19:49:58 -09:00
|
|
|
|
2023-01-27 19:51:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[rule.threat]]
|
|
|
|
|
framework = "MITRE ATT&CK"
|
|
|
|
|
[[rule.threat.technique]]
|
|
|
|
|
id = "T1563"
|
|
|
|
|
name = "Remote Service Session Hijacking"
|
|
|
|
|
reference = "https://attack.mitre.org/techniques/T1563/"
|
|
|
|
|
[[rule.threat.technique.subtechnique]]
|
|
|
|
|
id = "T1563.001"
|
|
|
|
|
name = "SSH Hijacking"
|
|
|
|
|
reference = "https://attack.mitre.org/techniques/T1563/001/"
|
|
|
|
|
|
|
|
|
|
[[rule.threat.technique]]
|
|
|
|
|
id = "T1021"
|
|
|
|
|
name = "Remote Services"
|
|
|
|
|
reference = "https://attack.mitre.org/techniques/T1021/"
|
|
|
|
|
[[rule.threat.technique.subtechnique]]
|
|
|
|
|
id = "T1021.004"
|
|
|
|
|
name = "SSH"
|
|
|
|
|
reference = "https://attack.mitre.org/techniques/T1021/004/"
|
|
|
|
|
|
|
|
|
|
[rule.threat.tactic]
|
|
|
|
|
id = "TA0008"
|
|
|
|
|
name = "Lateral Movement"
|
|
|
|
|
reference = "https://attack.mitre.org/tactics/TA0008/"
|