在容器内搜索 AWS 凭证

编辑

此规则检测在容器内使用系统搜索实用程序(如 grep 和 find)来搜索 AWS 凭证的行为。未经授权访问这些敏感文件可能会导致容器环境进一步受损,或者促进容器突破到底层云环境。

规则类型: eql

规则索引:

  • logs-cloud_defend*

严重性: 中

风险评分: 47

运行频率: 5 分钟

搜索索引时间范围: now-6m (日期数学格式,另请参阅 额外的回溯时间)

每次执行的最大警报数: 100

参考:

标签:

  • 数据源: Elastic Defend for Containers
  • 域: 容器
  • 操作系统: Linux
  • 用例: 威胁检测
  • 策略: 凭证访问

版本: 1

规则作者:

  • Elastic

规则许可证: Elastic License v2

规则查询

编辑
process where event.module == "cloud_defend" and
  event.type == "start" and

/*account for tools that execute utilities as a subprocess, in this case the target utility name will appear as a process arg*/
(process.name : ("grep", "egrep", "fgrep", "find", "locate", "mlocate") or process.args : ("grep", "egrep", "fgrep", "find", "locate", "mlocate")) and
process.args : ("*aws_access_key_id*", "*aws_secret_access_key*", "*aws_session_token*", "*accesskeyid*", "*secretaccesskey*", "*access_key*", "*.aws/credentials*")

框架: MITRE ATT&CKTM