通过 Nsenter 逃逸 Docker
编辑通过 Nsenter 逃逸 Docker
编辑此规则通过 nsenter
识别 UID 更改事件。nsenter
命令用于进入命名空间,这是一种隔离进程和资源的方法。攻击者可以使用 nsenter
从容器逃逸到主机,这可能导致权限提升和横向移动。
规则类型: eql
规则索引:
- logs-endpoint.events.process*
严重性: 中等
风险评分: 47
运行频率: 5 分钟
搜索索引自: now-9m (日期数学格式,另见 额外回溯时间
)
每次执行的最大告警数: 100
参考资料:
标签:
- 领域:端点
- 领域:容器
- 操作系统:Linux
- 用例:威胁检测
- 策略:权限提升
- 数据源:Elastic Defend
版本: 1
规则作者:
- Elastic
规则许可证: Elastic License v2
规则查询
编辑process where host.os.type == "linux" and event.type == "change" and event.action == "uid_change" and process.entry_leader.entry_meta.type == "container" and process.args == "nsenter" and process.args in ("-t", "--target") and process.args_count >= 4
框架: MITRE ATT&CKTM
-
策略
- 名称:权限提升
- ID:TA0004
- 参考网址:https://attack.mitre.org/tactics/TA0004/
-
技术
- 名称:逃逸到主机
- ID:T1611
- 参考网址:https://attack.mitre.org/techniques/T1611/