mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 08:02:49 -05:00
[SG-692] Block unknown devices from using passwordless auth (#2315)
* Block unknown devices from initiating auth requests * Rename anonymousHub route to anonymous-hub
This commit is contained in:
@ -89,9 +89,9 @@ public class AuthRequestsController : Controller
|
||||
{
|
||||
throw new BadRequestException("Device type not provided.");
|
||||
}
|
||||
if (!_globalSettings.PasswordlessAuth.KnownDevicesOnly)
|
||||
if (_globalSettings.PasswordlessAuth.KnownDevicesOnly)
|
||||
{
|
||||
var d = await _deviceRepository.GetByIdentifierAsync(_currentContext.DeviceIdentifier);
|
||||
var d = await _deviceRepository.GetByIdentifierAsync(model.DeviceIdentifier);
|
||||
if (d == null || d.UserId != user.Id)
|
||||
{
|
||||
throw new NotFoundException();
|
||||
|
Reference in New Issue
Block a user