1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-04 20:50:21 -05:00

Clear device keys on deactivate

This commit is contained in:
Bernd Schoolmann 2025-04-02 12:12:41 +02:00
parent f90bcd44de
commit e7644aec38
No known key found for this signature in database
2 changed files with 15 additions and 0 deletions

View File

@ -77,6 +77,9 @@ public class DeviceService : IDeviceService
device.Active = false;
device.RevisionDate = DateTime.UtcNow;
device.EncryptedPrivateKey = null;
device.EncryptedPublicKey = null;
device.EncryptedUserKey = null;
await _deviceRepository.UpsertAsync(device);
await _pushRegistrationService.DeleteRegistrationAsync(device.Id.ToString());

View File

@ -0,0 +1,12 @@
UPDATE [dbo].[Device]
SET
EncryptedUserKey = NULL,
EncryptedPublicKey = NULL,
EncryptedPrivateKey = NULL
WHERE Active = 1
AND (
EncryptedUserKey IS NOT NULL OR
EncryptedPublicKey IS NOT NULL OR
EncryptedPrivateKey IS NOT NULL
);
GO;