mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
prevent hidden password users from modifying hidden fields
This commit is contained in:
parent
948d8f707d
commit
305b48ebb4
@ -975,7 +975,7 @@ public class CipherService : ICipherService
|
|||||||
|
|
||||||
private async Task ValidateViewPasswordUserAsync(Cipher cipher)
|
private async Task ValidateViewPasswordUserAsync(Cipher cipher)
|
||||||
{
|
{
|
||||||
if (cipher.Type != CipherType.Login || cipher.Data == null || !cipher.OrganizationId.HasValue)
|
if (cipher.Data == null || !cipher.OrganizationId.HasValue)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -986,18 +986,33 @@ public class CipherService : ICipherService
|
|||||||
// Check if user is a "hidden password" user
|
// Check if user is a "hidden password" user
|
||||||
if (!cipherPermissions.TryGetValue(cipher.Id, out var permission) || !(permission.ViewPassword && permission.Edit))
|
if (!cipherPermissions.TryGetValue(cipher.Id, out var permission) || !(permission.ViewPassword && permission.Edit))
|
||||||
{
|
{
|
||||||
|
var existingCipherData = JsonSerializer.Deserialize<CipherLoginData>(existingCipher.Data);
|
||||||
|
var newCipherData = JsonSerializer.Deserialize<CipherLoginData>(cipher.Data);
|
||||||
// "hidden password" users may not add cipher key encryption
|
// "hidden password" users may not add cipher key encryption
|
||||||
if (existingCipher.Key == null && cipher.Key != null)
|
if (existingCipher.Key == null && cipher.Key != null)
|
||||||
{
|
{
|
||||||
throw new BadRequestException("You do not have permission to add cipher key encryption.");
|
throw new BadRequestException("You do not have permission to add cipher key encryption.");
|
||||||
}
|
}
|
||||||
// "hidden password" users may not change passwords, TOTP codes, or passkeys, so we need to set them back to the original values
|
if (existingCipherData?.Fields != null && newCipherData?.Fields != null)
|
||||||
var existingCipherData = JsonSerializer.Deserialize<CipherLoginData>(existingCipher.Data);
|
{
|
||||||
var newCipherData = JsonSerializer.Deserialize<CipherLoginData>(cipher.Data);
|
// Keep only non-hidden fields from the new cipher
|
||||||
newCipherData.Fido2Credentials = existingCipherData.Fido2Credentials;
|
var nonHiddenFields = newCipherData.Fields.Where(f => f.Type != FieldType.Hidden).ToList();
|
||||||
newCipherData.Totp = existingCipherData.Totp;
|
|
||||||
newCipherData.Password = existingCipherData.Password;
|
// Get hidden fields from the existing cipher
|
||||||
cipher.Data = JsonSerializer.Serialize(newCipherData);
|
var hiddenFields = existingCipherData.Fields.Where(f => f.Type == FieldType.Hidden);
|
||||||
|
|
||||||
|
// Replace the hidden fields in new cipher data with the existing ones
|
||||||
|
newCipherData.Fields = nonHiddenFields.Concat(hiddenFields);
|
||||||
|
cipher.Data = JsonSerializer.Serialize(newCipherData);
|
||||||
|
}
|
||||||
|
if (cipher.Type == CipherType.Login)
|
||||||
|
{
|
||||||
|
// "hidden password" users may not change passwords, TOTP codes, or passkeys, so we need to set them back to the original values
|
||||||
|
newCipherData.Fido2Credentials = existingCipherData.Fido2Credentials;
|
||||||
|
newCipherData.Totp = existingCipherData.Totp;
|
||||||
|
newCipherData.Password = existingCipherData.Password;
|
||||||
|
cipher.Data = JsonSerializer.Serialize(newCipherData);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user