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

运行频率: 5分钟

搜索索引时间范围: 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