Microsoft Exchange Server UM 写入可疑文件

编辑

Microsoft Exchange Server UM 写入可疑文件编辑

识别由 Microsoft Exchange Server 统一消息 (UM) 服务写入的可疑文件。已观察到此活动利用了 CVE-2021-26858 漏洞。

规则类型: eql

规则索引:

  • winlogbeat-*
  • logs-endpoint.events.file-*
  • logs-windows.sysmon_operational-*
  • endgame-*

严重程度: 中等

风险评分: 47

运行频率: 5 分钟

搜索的索引范围: now-9m(日期数学格式,另请参阅 额外回溯时间

每次执行的最大警报数: 100

参考资料:

标签:

  • 域: 端点
  • 操作系统: Windows
  • 用例: 威胁检测
  • 战术: 初始访问
  • 战术: 横向移动
  • 数据源: Elastic Endgame
  • 用例: 漏洞
  • 数据源: Elastic Defend
  • 数据源: Sysmon

版本: 108

规则作者:

  • Elastic
  • Austin Songer

规则许可证: Elastic License v2

调查指南编辑

分类和分析

可以根据 Microsoft 建立的 基线检查阳性结果。

Microsoft 强烈建议最佳行动方案是打补丁,但这可能无法保护已受感染的系统免受现有入侵的影响。其他用于检测和缓解的工具可以在其 Exchange 支持 存储库 中找到

设置编辑

设置

如果在非 elastic-agent 索引(例如 beats)上启用 EQL 规则,对于版本 <8.2,事件将不会定义 event.ingested,并且在版本 8.2 之前没有添加 EQL 规则的默认回退。因此,为了使此规则有效工作,用户需要添加自定义提取管道以将 event.ingested 填充到 @timestamp。有关添加自定义提取管道的更多详细信息,请参阅 - https://elastic.ac.cn/guide/en/fleet/current/data-streams-pipeline-tutorial.html

规则查询编辑

file where host.os.type == "windows" and event.type == "creation" and
  process.name : ("UMWorkerProcess.exe", "umservice.exe") and
  file.extension : ("php", "jsp", "js", "aspx", "asmx", "asax", "cfm", "shtml") and
  (
    file.path : "?:\\inetpub\\wwwroot\\aspnet_client\\*" or

    (file.path : "?:\\*\\Microsoft\\Exchange Server*\\FrontEnd\\HttpProxy\\owa\\auth\\*" and
       not (file.path : "?:\\*\\Microsoft\\Exchange Server*\\FrontEnd\\HttpProxy\\owa\\auth\\version\\*" or
            file.name : ("errorFE.aspx", "expiredpassword.aspx", "frowny.aspx", "GetIdToken.htm", "logoff.aspx",
                        "logon.aspx", "OutlookCN.aspx", "RedirSuiteServiceProxy.aspx", "signout.aspx"))) or

    (file.path : "?:\\*\\Microsoft\\Exchange Server*\\FrontEnd\\HttpProxy\\ecp\\auth\\*" and
       not file.name : "TimeoutLogoff.aspx")
  )

框架: MITRE ATT&CKTM