通过 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
- 参考 URL: https://attack.mitre.org/tactics/TA0004/
-
技术
- 名称: 逃逸到主机
- ID: T1611
- 参考 URL: https://attack.mitre.org/techniques/T1611/