潜在内存搜索活动
编辑潜在内存搜索活动
编辑监控可能被用作内存地址搜索器的 Unix 实用程序的执行。攻击者可能会利用内置实用程序来搜索特定的内存地址,从而可能进行未来的操作/利用。
规则类型: eql
规则索引:
- logs-endpoint.events.*
- endgame-*
严重性: 低
风险评分: 21
每隔: 5m
搜索索引时间: now-9m (日期数学格式,另请参阅 额外回溯时间
)
每次执行的最大告警数: 100
参考:
标签:
- 领域:端点
- 操作系统:Linux
- 用例:威胁检测
- 战术:发现
- 规则类型:BBR
- 数据源: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 == "tail" and process.args in ("-c", "--bytes")) or (process.name == "cmp" and process.args == "-i") or (process.name in ("hexdump", "xxd") and process.args == "-s") or (process.name == "dd" and process.args : ("skip*", "seek*")) ) and not ( process.parent.args like ("/opt/error_monitor/error_monitor.sh", "printf*") or process.parent.name in ("acme.sh", "dracut", "leapp") or process.parent.executable like ( "/bin/cagefs_enter", "/opt/nessus_agent/sbin/nessus-service", "/usr/libexec/platform-python*", "/usr/libexec/vdsm/vdsmd", "/usr/local/bin/docker-entrypoint.sh", "/usr/lib/module-init-tools/lsinitrd-quick" ) or process.parent.command_line like "sh*acme.sh*" or process.args like "/var/tmp/dracut*" )
框架: MITRE ATT&CKTM
-
战术
- 名称:发现
- ID:TA0007
- 参考网址:https://attack.mitre.org/tactics/TA0007/
-
技术
- 名称:进程发现
- ID:T1057
- 参考网址:https://attack.mitre.org/techniques/T1057/