Query Details

Hunting AI Recall On Windows 11 24H2

Query

// Hunting AI Recall on Windows 11 24H2
// https://www.linkedin.com/posts/activity-7204333401787572226-jFYe/

// The Windows 11 AI Recall feature, which has sparked considerable debate since its introduction by Microsoft on May 20th, operates on ARM CPU architecture. Despite the security community’s concerns, Microsoft has yet to provide comprehensive explanations. Meanwhile, this feature is now accessible in the Windows 11 24H2 update as a preview. For SecOps, particularly within large organizations, it’s crucial to track whether this function is being activated on corporate endpoints, considering the potential risks highlighted in the shared articles. Below is a KQL hunting query designed for security analysts to detect any activations of the Windows 11 recall function within your corporate network, assuming the use of Microsoft Defender for Endpoint. 

let Windows11_24H2 =
DeviceInfo
| where OSPlatform == "Windows11" and OSVersionInfo == "24H2"
| project DeviceName;
DeviceFileEvents
| where FolderPath contains "CoreAIPlatform"
| where DeviceName has_any(Windows11_24H2)

Explanation

This query is designed to help security analysts detect if the Windows 11 AI Recall feature, introduced in the Windows 11 24H2 update, is being activated on corporate endpoints. The query works as follows:

  1. Identify Windows 11 24H2 Devices:

    • It first filters devices running Windows 11 with the specific version 24H2. - It extracts the names of these devices.
  2. Check for AI Recall Activation:

    • It then looks for file events in the "CoreAIPlatform" folder on these devices.
    • If any such events are found, it indicates that the AI Recall feature might be activated.

This query is useful for security operations teams to monitor and manage potential risks associated with the AI Recall feature on their network.

Details

Steven Lim profile picture

Steven Lim

Released: August 2, 2024

Tables

DeviceInfoDeviceFileEvents

Keywords

Devices

Operators

let==and|containshas_anyproject

Actions