Microsoft Windows Defender 篡改
编辑Microsoft Windows Defender 篡改编辑
识别何时禁用 Microsoft Defender 上的一个或多个功能。攻击者可能会禁用或篡改 Microsoft Defender 功能以逃避检测并隐藏恶意行为。
规则类型: eql
规则索引:
- winlogbeat-*
- logs-endpoint.events.registry-*
- logs-windows.sysmon_operational-*
严重程度: 中等
风险评分: 47
运行频率: 5 分钟
搜索的索引时间范围: now-9m(日期数学格式,另请参阅 额外回溯时间
)
每次执行的最大警报数: 100
参考:
- https://thedfirreport.com/2021/10/18/icedid-to-xinglocker-ransomware-in-24-hours/
- https://www.tenforums.com/tutorials/32236-enable-disable-microsoft-defender-pua-protection-windows-10-a.html
- https://www.tenforums.com/tutorials/104025-turn-off-core-isolation-memory-integrity-windows-10-a.html
- https://www.tenforums.com/tutorials/105533-enable-disable-windows-defender-exploit-protection-settings.html
- https://www.tenforums.com/tutorials/123792-turn-off-tamper-protection-microsoft-defender-antivirus.html
- https://www.tenforums.com/tutorials/51514-turn-off-microsoft-defender-periodic-scanning-windows-10-a.html
- https://www.tenforums.com/tutorials/3569-turn-off-real-time-protection-microsoft-defender-antivirus.html
- https://www.tenforums.com/tutorials/99576-how-schedule-scan-microsoft-defender-antivirus-windows-10-a.html
标签:
- 域: 端点
- 操作系统: Windows
- 用例: 威胁检测
- 战术: 防御规避
- 资源: 调查指南
- 数据源: Elastic Defend
- 数据源: Sysmon
版本: 112
规则作者:
- Austin Songer
规则许可证: Elastic 许可证 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)。
设置编辑
设置
如果在非 Elastic 代理索引(例如 Beats)上为 <8.2 版本启用 EQL 规则,则事件不会定义 event.ingested
,并且在 8.2 版本之前不会添加 EQL 规则的默认回退。因此,为了使此规则有效工作,用户需要添加自定义摄取管道以将 event.ingested
填充到 @timestamp。有关添加自定义摄取管道的更多详细信息,请参阅 - https://elastic.ac.cn/guide/en/fleet/current/data-streams-pipeline-tutorial.html
规则查询编辑
registry where host.os.type == "windows" and event.type in ("creation", "change") and process.executable != null 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") and (registry.path : "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\PUAProtection" and registry.data.strings : ("0", "0x00000000")) or (registry.path : "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender Security Center\\App and Browser protection\\DisallowExploitProtectionOverride" and registry.data.strings : ("0", "0x00000000")) or (registry.path : "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\DisableAntiSpyware" and registry.data.strings : ("1", "0x00000001")) or (registry.path : "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Features\\TamperProtection" and registry.data.strings : ("0", "0x00000000")) or (registry.path : "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Real-Time Protection\\DisableRealtimeMonitoring" and registry.data.strings : ("1", "0x00000001")) or (registry.path : "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Real-Time Protection\\DisableIntrusionPreventionSystem" and registry.data.strings : ("1", "0x00000001")) or (registry.path : "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Real-Time Protection\\DisableScriptScanning" and registry.data.strings : ("1", "0x00000001")) or (registry.path : "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Windows Defender Exploit Guard\\Controlled Folder Access\\EnableControlledFolderAccess" and registry.data.strings : ("0", "0x00000000")) or (registry.path : "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Real-Time Protection\\DisableIOAVProtection" and registry.data.strings : ("1", "0x00000001")) or (registry.path : "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Reporting\\DisableEnhancedNotifications" and registry.data.strings : ("1", "0x00000001")) or (registry.path : "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\SpyNet\\DisableBlockAtFirstSeen" and registry.data.strings : ("1", "0x00000001")) or (registry.path : "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\SpyNet\\SpynetReporting" and registry.data.strings : ("0", "0x00000000")) or (registry.path : "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\SpyNet\\SubmitSamplesConsent" and registry.data.strings : ("0", "0x00000000")) or (registry.path : "HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Real-Time Protection\\DisableBehaviorMonitoring" and registry.data.strings : ("1", "0x00000001"))
框架: MITRE ATT&CKTM
-
战术
- 名称: 防御规避
- ID: TA0005
- 参考 URL: https://attack.mitre.org/tactics/TA0005/
-
技术
- 名称: 修改注册表
- ID: T1112
- 参考 URL: https://attack.mitre.org/techniques/T1112/
-
技术
- 名称: 削弱防御
- ID: T1562
- 参考 URL: https://attack.mitre.org/techniques/T1562/