Microsoft Windows Defender 篡改

编辑

识别 Microsoft Defender 上的一个或多个功能是否被禁用。攻击者可能会禁用或篡改 Microsoft Defender 功能以逃避检测并隐藏恶意行为。

规则类型: eql

规则索引:

  • winlogbeat-*
  • logs-endpoint.events.registry-*
  • logs-windows.sysmon_operational-*
  • logs-m365_defender.event-*
  • logs-sentinel_one_cloud_funnel.*
  • endgame-*

严重性: 中等

风险评分: 47

每隔: 5m 运行

搜索索引自: now-9m (日期数学格式,另请参见 额外回溯时间)

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

参考:

标签:

  • 域:端点
  • 操作系统:Windows
  • 用例:威胁检测
  • 战术:防御规避
  • 资源:调查指南
  • 数据源:Elastic Defend
  • 数据源:Sysmon
  • 数据源:Microsoft Defender for Endpoint
  • 数据源:SentinelOne
  • 数据源:Elastic Endgame

版本: 314

规则作者:

  • Austin Songer

规则许可证: Elastic License v2

调查指南

编辑

分类和分析

调查 Microsoft Windows Defender 篡改

Microsoft Windows Defender 是内置于 Microsoft Windows 中的防病毒产品,使其在多种环境中都很受欢迎。禁用它是在威胁参与者剧本中常见的步骤。

此规则监视注册表以查找禁用 Windows Defender 功能的修改。

可能的调查步骤

  • 调查未知进程的进程执行链(父进程树)。检查其可执行文件以了解流行度、它们是否位于预期位置以及它们是否使用有效的数字签名进行签名。
  • 验证活动是否与计划的补丁、更新、网络管理员活动或合法软件安装无关。
  • 识别执行该操作的用户帐户以及该帐户是否应该执行此类操作。
  • 联系帐户所有者并确认他们是否知道此活动。
  • 调查过去 48 小时内与用户/主机关联的其他告警。
  • 检查已禁用的功能,并检查此操作是否在变更管理下完成并根据组织的策略获得批准。

误报分析

  • 此机制可以合法使用。如果管理员知道该活动,配置合理(例如,用于部署其他安全解决方案或故障排除),并且未观察到其他可疑活动,则分析师可以驳回该告警。

相关规则

  • 通过注册表修改禁用 Windows Defender - 2ffa1f1e-b6db-47fa-994b-1512743847eb
  • 通过 PowerShell 禁用 Windows Defender 安全设置 - c8cccb06-faf2-4cd5-886e-2c9636cfcb87

响应和修复

  • 根据分类结果启动事件响应流程。
  • 隔离相关主机以防止进一步的入侵后行为。
  • 调查受攻击系统或攻击者使用的系统上的凭据泄露,以确保识别所有受攻击的帐户。重置这些帐户的密码和其他可能受攻击的凭据,例如电子邮件、业务系统和 Web 服务。
  • 采取措施恢复适当的 Windows Defender 防病毒配置。
  • 运行完全的反恶意软件扫描。这可能会发现系统中留下的其他工件、持久性机制和恶意软件组件。
  • 查看分配给用户的权限,以确保遵循最小权限原则。
  • 确定攻击者滥用的初始载体,并采取措施防止通过相同载体重新感染。
  • 使用事件响应数据,更新日志记录和审计策略以改善平均检测时间 (MTTD) 和平均响应时间 (MTTR)。

规则查询

编辑
registry where host.os.type == "windows" and event.type == "change" and process.executable != null and
  (
    (
      registry.value : (
        "PUAProtection", "DisallowExploitProtectionOverride", "TamperProtection", "EnableControlledFolderAccess",
        "SpynetReporting", "SubmitSamplesConsent"
      ) and registry.data.strings : ("0", "0x00000000")
    ) or
    (
      registry.path : (
        "DisableAntiSpyware", "DisableRealtimeMonitoring", "DisableIntrusionPreventionSystem", "DisableScriptScanning",
        "DisableIOAVProtection", "DisableEnhancedNotifications", "DisableBlockAtFirstSeen", "DisableBehaviorMonitoring"
      ) and registry.data.strings : ("1", "0x00000001")
    )
  ) and
  not process.executable : (
    "?:\\Windows\\system32\\svchost.exe",
    "?:\\Windows\\CCM\\CcmExec.exe",
    "?:\\Windows\\System32\\DeviceEnroller.exe",
    "?:\\Program Files (x86)\\Trend Micro\\Security Agent\\tmuninst.exe"
  )

/*
    Full registry key paths omitted due to data source variations:
    "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\DisableAntiSpyware"
    "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Real-Time Protection\\DisableRealtimeMonitoring"
    "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Real-Time Protection\\DisableIntrusionPreventionSystem"
    "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Real-Time Protection\\DisableScriptScanning"
    "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Real-Time Protection\\DisableIOAVProtection"
    "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Reporting\\DisableEnhancedNotifications"
    "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\SpyNet\\DisableBlockAtFirstSeen"
    "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Real-Time Protection\\DisableBehaviorMonitoring"
    "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\PUAProtection"
    "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender Security Center\\App and Browser protection\\DisallowExploitProtectionOverride"
    "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Features\\TamperProtection"
    "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Windows Defender Exploit Guard\\Controlled Folder Access\\EnableControlledFolderAccess"
    "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\SpyNet\\SpynetReporting"
    "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\SpyNet\\SubmitSamplesConsent"
*/

框架: MITRE ATT&CKTM