使用内置工具进行进程发现
编辑使用内置工具进行进程发现编辑
此规则标识可用于枚举正在运行的进程的命令的执行。攻击者可能会枚举进程以识别已安装的应用程序和安全解决方案。
规则类型: eql
规则索引:
- logs-endpoint.events.process-*
- logs-system.security*
- winlogbeat-*
- logs-windows.*
- endgame-*
严重性: 低
风险评分: 21
每隔: 5 分钟运行一次
从以下时间开始搜索索引: now-9m (日期数学格式,另请参见 附加回溯时间
)
每次执行的最大警报数: 100
参考: 无
标签:
- 域:端点
- 操作系统:Windows
- 用例:威胁检测
- 策略:发现
- 规则类型:BBR
- 数据源:Elastic Defend
- 数据源:Elastic Endgame
版本: 4
规则作者:
- Elastic
规则许可: Elastic 许可证 v2
规则查询编辑
process where host.os.type == "windows" and event.type == "start" and ( process.name :("PsList.exe", "qprocess.exe") or (process.name : "powershell.exe" and process.args : ("*get-process*", "*Win32_Process*")) or (process.name : "wmic.exe" and process.args : ("process", "*Win32_Process*")) or (process.name : "tasklist.exe" and not process.args : ("pid eq*")) or (process.name : "query.exe" and process.args : "process") ) and not user.id : "S-1-5-18"
框架: MITRE ATT&CKTM
-
策略
- 名称:发现
- ID:TA0007
- 参考 URL:https://attack.mitre.org/tactics/TA0007/
-
技术
- 名称:进程发现
- ID:T1057
- 参考 URL:https://attack.mitre.org/techniques/T1057/