可疑内存 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/