运行容器内建立 SSH 连接
编辑运行容器内建立 SSH 连接
编辑此规则检测在运行的容器内建立的传入 SSH 连接。应避免在容器内运行 ssh 守护程序,如有必要,应密切监控。如果攻击者获得有效凭据,他们可以使用它来获得初始访问权限或在受损环境中建立持久性。
规则类型: eql
规则索引:
- logs-cloud_defend*
严重性: 高
风险评分: 73
运行频率: 5 分钟
搜索索引自: now-6m (日期数学格式,另请参见 额外回溯时间
)
每次执行的最大告警数: 100
参考:
标签:
- 数据源:Elastic Defend for Containers
- 领域:容器
- 操作系统:Linux
- 用例:威胁检测
- 策略:初始访问
- 策略:横向移动
版本: 2
规则作者:
- Elastic
规则许可证: Elastic License v2
规则查询
编辑process where container.id: "*" and event.type == "start" and /* use of sshd to enter a container*/ process.entry_leader.entry_meta.type: "sshd" and /* process is the initial process run in a container or start of a new session*/ (process.entry_leader.same_as_process== true or process.session_leader.same_as_process== true) and /* interactive process*/ process.interactive== true
框架: MITRE ATT&CKTM
-
策略
- 名称:初始访问
- ID:TA0001
- 参考 URL:https://attack.mitre.org/tactics/TA0001/
-
技术
- 名称:外部远程服务
- ID:T1133
- 参考 URL:https://attack.mitre.org/techniques/T1133/
-
策略
- 名称:横向移动
- ID:TA0008
- 参考 URL:https://attack.mitre.org/tactics/TA0008/
-
技术
- 名称:远程服务
- ID:T1021
- 参考 URL:https://attack.mitre.org/techniques/T1021/
-
子技术
- 名称:SSH
- ID:T1021.004
- 参考 URL:https://attack.mitre.org/techniques/T1021/004/