diff --git a/atomics/T1113/T1113.yaml b/atomics/T1113/T1113.yaml index 7aae6138..88b5c3ab 100644 --- a/atomics/T1113/T1113.yaml +++ b/atomics/T1113/T1113.yaml @@ -194,3 +194,19 @@ atomic_tests: cleanup_command: | Remove-Item #{output_file} -ErrorAction Ignore name: powershell +- name: Windows Recall Feature Enabled - DisableAIDataAnalysis Value Deleted + auto_generated_guid: + description: |- + Detects the enabling of the Windows Recall feature via registry manipulation. Windows Recall can be enabled by deleting the existing "DisableAIDataAnalysis" registry value. Adversaries may enable Windows Recall as part of post-exploitation discovery and collection activities. This rule assumes that Recall is already explicitly disabled on the host, and subsequently enabled by the adversary. + - https://learn.microsoft.com/en-us/windows/client-management/manage-recall + - https://learn.microsoft.com/en-us/windows/client-management/mdm/policy-csp-windowsai#disableaidataanalysis + supported_platforms: + - windows + executor: + command: | + reg add "HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\WindowsAI" /v DisableAIDataAnalysis /t REG_DWORD /d 1 /f + reg delete "HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\WindowsAI" /v DisableAIDataAnalysis /f + cleanup_command: | + reg add "HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\WindowsAI" /v DisableAIDataAnalysis /t REG_DWORD /d 1 /f + name: powershell + elevation_required: true