mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
[SG-762] Prevent approving request on second device after denying on first (#2370)
* Added check to ensure a passwordless request is not acted upon multiple times * Corrected grammer
This commit is contained in:
parent
ea33c27b9e
commit
9703fb6874
@ -125,6 +125,11 @@ public class AuthRequestsController : Controller
|
|||||||
throw new NotFoundException();
|
throw new NotFoundException();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (authRequest.Approved is not null)
|
||||||
|
{
|
||||||
|
throw new DuplicateAuthRequestException();
|
||||||
|
}
|
||||||
|
|
||||||
var device = await _deviceRepository.GetByIdentifierAsync(model.DeviceIdentifier);
|
var device = await _deviceRepository.GetByIdentifierAsync(model.DeviceIdentifier);
|
||||||
if (device == null)
|
if (device == null)
|
||||||
{
|
{
|
||||||
|
10
src/Core/Exceptions/DuplicateAuthRequestException.cs
Normal file
10
src/Core/Exceptions/DuplicateAuthRequestException.cs
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
namespace Bit.Core.Exceptions;
|
||||||
|
|
||||||
|
public class DuplicateAuthRequestException : Exception
|
||||||
|
{
|
||||||
|
public DuplicateAuthRequestException()
|
||||||
|
: base("An authentication request with the same device already exists.")
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user