通过内置 Windows 实用程序进行系统服务发现
编辑通过内置 Windows 实用程序进行系统服务发现
编辑检测常用系统服务发现技术的用法,攻击者可能在入侵系统后的侦察阶段使用这些技术,以便更好地了解环境和/或提升权限。
规则类型: eql
规则索引:
- winlogbeat-*
- logs-endpoint.events.process-*
- logs-windows.*
- endgame-*
- logs-system.security*
严重程度: 低
风险评分: 21
每隔: 5m 执行
搜索索引时间范围: now-9m (日期数学格式,另请参阅 额外回溯时间
)
每次执行的最大告警数: 100
参考: 无
标签:
- 领域: 端点
- 操作系统: Windows
- 用例: 威胁检测
- 战术: 发现
- 数据源: Elastic Defend
- 数据源: Elastic Endgame
- 规则类型: BBR
- 数据源: 系统
版本: 109
规则作者:
- Elastic
规则许可证: Elastic License v2
规则查询
编辑process where host.os.type == "windows" and event.type == "start" and ( ((process.name: "net.exe" or process.pe.original_file_name == "net.exe" or (process.name : "net1.exe" and not process.parent.name : "net.exe")) and process.args : ("start", "use") and process.args_count == 2) or ((process.name: "sc.exe" or process.pe.original_file_name == "sc.exe") and process.args: ("query", "q*")) or ((process.name: "tasklist.exe" or process.pe.original_file_name == "tasklist.exe") and process.args: "/svc") or (process.name : "psservice.exe" or process.pe.original_file_name == "psservice.exe") ) and not user.id : "S-1-5-18"
框架: MITRE ATT&CKTM
-
战术
- 名称: 发现
- ID: TA0007
- 参考网址: https://attack.mitre.org/tactics/TA0007/
-
技术
- 名称: 系统服务发现
- ID: T1007
- 参考网址: https://attack.mitre.org/techniques/T1007/