Entra ID Device Registration with ROADtools Default OS Build
Description
Identifies a Microsoft Entra ID device registration where the recorded cloud device operating system build is "10.0.19041.928" and the device display name follows the default "DESKTOP-" pattern. This combination is the default device profile that ROADtools (roadtx) uses when registering a device, and it is uncommon for the OS build to match the hardcoded value across an environment of otherwise patched hosts. Adversaries register rogue devices in Entra ID to acquire a Primary Refresh Token (PRT), establish persistence, and obtain trusted, programmatic access to the tenant. Because the OS build is a tool default, this is a high-fidelity but evadable indicator; baseline approved provisioning tooling and device naming conventions before relying on it.
Query · kuery
data_stream.dataset:"azure.auditlogs" and event.action:"Add device" and
azure.auditlogs.properties.target_resources.0.modified_properties.3.new_value:*10.0.19041.928* and
azure.auditlogs.properties.target_resources.0.modified_properties.4.new_value:*DESKTOP-*
Investigation fields
Pivot points the source recommends for triage.
@timestampevent.actionevent.outcomeazure.auditlogs.identityazure.auditlogs.operation_nameazure.auditlogs.properties.target_resources.0.display_nameazure.auditlogs.properties.target_resources.0.modified_properties.3.new_valueazure.auditlogs.properties.target_resources.0.modified_properties.4.new_valueazure.auditlogs.properties.initiated_by.user.userPrincipalNameazure.auditlogs.properties.initiated_by.user.ipAddressazure.correlation_id
Known false positives
- Legitimate device registrations may coincidentally use the `10.0.19041.928` build (Windows 10 20H1) with a default `DESKTOP-` hostname, particularly on imaged or unmanaged Windows hosts that have not been updated. Validate against your device inventory, expected provisioning workflows, and the registering user before escalating.
- Authorized red team or penetration testing engagements that use ROADtools to register devices will match this rule. If this is expected, add exceptions for the specific user principal names, source IPs, or device names involved.
Analyst notes
Investigating Entra ID Device Registration with ROADtools Default OS Build
ROADtools (roadtx) registers a device in Entra ID with a default cloud device OS build of 10.0.19041.928 and a default
display name of DESKTOP-<8 random characters>. This OS build is the current default value roadtx uses and
differs from the OS version of legitimate hosts, making the build a useful indicator of ROADtools device registration.
Rogue device registration is typically a precursor to Primary Refresh Token (PRT) acquisition, MFA/Conditional Access
bypass, and persistent token-based access.
The matching Entra ID audit event is an Add device operation initiated by the Device Registration Service, where the
modified properties record the registered device characteristics:
azure.auditlogs.properties.target_resources.0.modified_properties.3(CloudDeviceOSVersion) =10.0.19041.928azure.auditlogs.properties.target_resources.0.modified_properties.4(CloudDisplayName) =DESKTOP-*
Possible investigation steps
- Confirm the registering identity via
azure.auditlogs.properties.initiated_by.user.userPrincipalNameand determine whether that user is expected to register a new device. - Review
azure.auditlogs.identityto confirm theDevice Registration Serviceinitiated the request, and useazure.correlation_idto pivot across the full registration flow (Add device,Add registered users to device,Add registered owner to device). - Inspect the device name in
azure.auditlogs.properties.target_resources.0.display_name; defaultDESKTOP-names that do not match your naming convention are suspicious. - Pivot to
azure.signinlogsfor the same user and timeframe and look for follow-on sign-ins where the incoming token type is aprimaryRefreshToken, or for risky/AiTM sign-ins immediately preceding the registration. - Review
azure.auditlogs.properties.initiated_by.user.ipAddressand geolocation for the registration source. Flag unexpected IPs, hosting/VPS ASNs, or impossible-travel relative to the user's normal activity. - Correlate with the user-agent-based device registration rules (e.g.,
Dsreg/*,DeviceRegistrationClient,Microsoft.OData.Client/*) for the same user or correlation ID to strengthen attribution to ROADtools.
False positive analysis
- Unmanaged or imaged Windows 10 20H1 hosts may legitimately present the
10.0.19041.928build with a defaultDESKTOP-hostname. Validate against device inventory and known provisioning programs. - Authorized security assessments using ROADtools will match. Document the engagement and add scoped exceptions.
Response and remediation
- If confirmed malicious, remove the registered device from Entra ID and revoke the user's refresh tokens and primary refresh tokens.
- Disable the account or reset credentials per policy and review for additional persistence (added owners, app registrations, or service principal credentials).
- Conduct historical analysis using
azure.correlation_idand the registering user to determine scope of access. - Tighten device registration and join controls via Conditional Access (restrict who can register/join devices and require MFA for registration).