From 4d3b5e235bb94698f7e9c8a9712f4971114aacc4 Mon Sep 17 00:00:00 2001 From: Aleksander <170264518+t-aleksander@users.noreply.github.com> Date: Wed, 5 Nov 2025 11:58:09 +0100 Subject: [PATCH 1/2] client version checking 1 --- core/proxy.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/proxy.proto b/core/proxy.proto index ef3a265..94bf252 100644 --- a/core/proxy.proto +++ b/core/proxy.proto @@ -223,6 +223,8 @@ message ClientMfaOidcAuthenticateRequest { message DeviceInfo { string ip_address = 1; optional string user_agent = 2; + optional string version = 3; + optional string platform = 4; } message RegisterMobileAuthRequest { From 5a9026a9e8746f14c8f946c674bb29d51e030faa Mon Sep 17 00:00:00 2001 From: Aleksander <170264518+t-aleksander@users.noreply.github.com> Date: Thu, 6 Nov 2025 17:08:46 +0100 Subject: [PATCH 2/2] add client platform info --- core/proxy.proto | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/core/proxy.proto b/core/proxy.proto index 94bf252..87091a1 100644 --- a/core/proxy.proto +++ b/core/proxy.proto @@ -219,6 +219,16 @@ message ClientMfaOidcAuthenticateRequest { string nonce = 4; } +message ClientPlatformInfo { + string os_family = 1; + string os_type = 2; + string version = 3; + optional string edition = 4; + optional string codename = 5; + optional string bitness = 6; + optional string architecture = 7; +} + // Common client info message DeviceInfo { string ip_address = 1;