mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
make sure user has access to cipher
This commit is contained in:
parent
f2deff99a7
commit
043de76aa8
@ -54,7 +54,7 @@ namespace Bit.Api.Controllers
|
||||
{
|
||||
var userId = _userService.GetProperUserId(User).Value;
|
||||
var cipher = await _cipherRepository.GetByIdAsync(new Guid(id), userId);
|
||||
if(cipher == null ||
|
||||
if(cipher == null || (cipher.UserId.HasValue && userId != cipher.UserId) ||
|
||||
(cipher.OrganizationId.HasValue && !_currentContext.OrganizationAdmin(cipher.OrganizationId.Value)))
|
||||
{
|
||||
throw new NotFoundException();
|
||||
|
Loading…
x
Reference in New Issue
Block a user