不寻常的打印后台处理程序子进程
编辑不寻常的打印后台处理程序子进程
编辑检测不寻常的打印后台处理程序服务 (spoolsv.exe) 子进程。这可能表明有人试图利用与 Windows 上的打印服务相关的特权提升漏洞。
规则类型: eql
规则索引:
- winlogbeat-*
- logs-endpoint.events.process-*
- logs-windows.*
- logs-system.security*
严重性: 中
风险评分: 47
运行频率: 5 分钟
搜索索引时间范围: now-9m (日期数学格式,另请参阅 额外回溯时间
)
每次执行的最大警报数: 100
参考资料:
标签:
- 域:端点
- 操作系统:Windows
- 用例:威胁检测
- 策略:特权提升
- 用例:漏洞
- 数据源:Elastic Defend
- 数据源:系统
版本: 209
规则作者:
- Elastic
规则许可证: Elastic License v2
设置
编辑设置
如果在非 elastic-agent 索引(例如 beats)上启用 EQL 规则的版本低于 8.2,则事件将不会定义 event.ingested
,并且在 8.2 版本之前没有添加 EQL 规则的默认回退。因此,为了使此规则有效工作,用户需要添加自定义 ingest 管道以将 event.ingested
填充到 @timestamp。有关添加自定义 ingest 管道的更多详细信息,请参阅 - https://elastic.ac.cn/guide/en/fleet/current/data-streams-pipeline-tutorial.html
规则查询
编辑process where host.os.type == "windows" and event.type == "start" and process.parent.name : "spoolsv.exe" and process.command_line != null and (?process.Ext.token.integrity_level_name : "System" or ?winlog.event_data.IntegrityLevel : "System") and /* exclusions for FP control below */ not process.name : ("splwow64.exe", "PDFCreator.exe", "acrodist.exe", "spoolsv.exe", "msiexec.exe", "route.exe", "WerFault.exe") and not process.command_line : "*\\WINDOWS\\system32\\spool\\DRIVERS*" and not (process.name : "net.exe" and process.command_line : ("*stop*", "*start*")) and not (process.name : ("cmd.exe", "powershell.exe") and process.command_line : ("*.spl*", "*\\program files*", "*route add*")) and not (process.name : "netsh.exe" and process.command_line : ("*add portopening*", "*rule name*")) and not (process.name : "regsvr32.exe" and process.command_line : "*PrintConfig.dll*") and not process.executable : ( "?:\\Program Files (x86)\\CutePDF Writer\\CPWriter2.exe", "?:\\Program Files (x86)\\GPLGS\\gswin32c.exe" )
框架: MITRE ATT&CKTM
-
策略
- 名称:特权提升
- ID: TA0004
- 参考 URL: https://attack.mitre.org/tactics/TA0004/
-
技术
- 名称:利用漏洞进行特权提升
- ID: T1068
- 参考 URL: https://attack.mitre.org/techniques/T1068/