在容器内建立 Netcat 监听器
编辑在容器内建立 Netcat 监听器编辑
此规则检测在容器内运行的已建立的 netcat 监听器。Netcat 是一个用于跨网络连接读取和写入数据的实用程序,它可以用于恶意目的,例如建立持久性后门或泄露数据。
规则类型:eql
规则索引:
- logs-cloud_defend*
严重性:高
风险评分: 73
运行频率:5 分钟
搜索索引范围:now-6m(日期数学格式,另请参阅 额外回溯时间
)
每次执行的最大警报数: 100
参考资料:无
标签:
- 数据源:Elastic Defend for Containers
- 域:容器
- 操作系统:Linux
- 用例:威胁检测
- 战术:执行
版本: 2
规则作者:
- Elastic
规则许可证:Elastic 许可证 v2
规则查询编辑
process where container.id: "*" and event.type== "start" and event.action in ("fork", "exec") and ( process.name:("nc","ncat","netcat","netcat.openbsd","netcat.traditional") or /*account for tools that execute utilities as a subprocess, in this case the target utility name will appear as a process arg*/ process.args: ("nc","ncat","netcat","netcat.openbsd","netcat.traditional") ) and ( /* bind shell to echo for command execution */ (process.args:("-*l*", "--listen", "-*p*", "--source-port") and process.args:("-c", "--sh-exec", "-e", "--exec", "echo","$*")) /* bind shell to specific port */ or process.args:("-*l*", "--listen", "-*p*", "--source-port") )
框架:MITRE ATT&CKTM
-
战术
- 名称:执行
- ID:TA0002
- 参考链接:https://attack.mitre.org/tactics/TA0002/
-
技术
- 名称:命令和脚本解释器
- ID:T1059
- 参考链接:https://attack.mitre.org/techniques/T1059/
-
子技术
- 名称:Unix Shell
- ID:T1059.004
- 参考链接:https://attack.mitre.org/techniques/T1059/004/