可疑的内存 grep 活动
编辑可疑的内存 grep 活动
编辑监视与内存映射相关的 grep 活动。Linux 中的 /proc/*/maps 文件为特定进程提供内存映射,详细说明内存段、权限以及哪些文件映射到这些段。攻击者可能会读取进程的内存映射,以识别用于代码注入或进程劫持的内存地址。
规则类型: eql
规则索引:
- logs-endpoint.events.*
- endgame-*
严重性: 低
风险评分: 21
运行频率: 5 分钟
搜索索引起始时间: now-9m (日期数学格式,另请参阅 额外的回溯时间
)
每次执行的最大告警数: 100
参考:
标签:
- 域: 端点
- 操作系统: Linux
- 用例: 威胁检测
- 策略: 发现
- 数据源: Elastic Defend
- 数据源: Elastic Endgame
版本: 3
规则作者:
- Elastic
规则许可: Elastic License v2
规则查询
编辑process where host.os.type == "linux" and event.type == "start" and event.action in ("exec", "exec_event") and process.name in ("grep", "egrep", "fgrep", "rgrep") and process.args in ("[stack]", "[vdso]", "[heap]")
框架: MITRE ATT&CKTM
-
策略
- 名称: 发现
- ID: TA0007
- 参考 URL: https://attack.mitre.org/tactics/TA0007/
-
技术
- 名称: 进程发现
- ID: T1057
- 参考 URL: https://attack.mitre.org/techniques/T1057/