MFA Enrollment Devices Named as "K"
Sep 10, 2025
Overview
Applies To
- Device Information
- MFA Enrollments
Cause
The Chromium browser for Android phones and tablets was updated, and the user agent no longer includes the Android version and the device model.
As an example, it changed from:
Mozilla/5.0 (Linux; Android <androidVersion>; <deviceModel>)
AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/<majorVersion>.<minorVersion> <deviceCompat>
Safari/537.36
To:
Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/<majorVersion>.0.0.0 <deviceCompat> Safari/537.36
The Auth0's SDKs parser returns "K" which is the OS family used as the name. It is most likely to see it on tenant logs "g_auth_succeed" where the K is listed in the user agent string. As an example:
{
...,
"type": "gd_auth_succeed",
"description": "Guardian - First factor authentication succeed (webauthn)",
"details": {
"request": {
"userAgent": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36",
...
}
Solution