mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Updated auth for phishing domain endpoints to either require api, or licensing claims to support both web and browser clients, and selfhost api clients
This commit is contained in:
parent
3ae97155ab
commit
7baa788484
@ -5,7 +5,7 @@ using Microsoft.AspNetCore.Mvc;
|
||||
namespace Bit.Api.Controllers;
|
||||
|
||||
[Route("phishing-domains")]
|
||||
[Authorize("Application")]
|
||||
[Authorize("PhishingDomains")]
|
||||
public class PhishingDomainsController(IPhishingDomainRepository phishingDomainRepository) : Controller
|
||||
{
|
||||
[HttpGet]
|
||||
|
@ -143,6 +143,14 @@ public class Startup
|
||||
(c.Value.Contains(ApiScopes.Api) || c.Value.Contains(ApiScopes.ApiSecrets))
|
||||
));
|
||||
});
|
||||
config.AddPolicy("PhishingDomains", policy =>
|
||||
{
|
||||
policy.RequireAuthenticatedUser();
|
||||
policy.RequireAssertion(ctx =>
|
||||
ctx.User.HasClaim(c => c.Type == JwtClaimTypes.Scope &&
|
||||
(c.Value == ApiScopes.ApiLicensing || c.Value == ApiScopes.Api))
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
services.AddScoped<AuthenticatorTokenProvider>();
|
||||
|
@ -21,7 +21,7 @@ public class CloudPhishingDomainRelayQuery : BaseIdentityClientService, ICloudPh
|
||||
httpFactory,
|
||||
globalSettings.Installation.ApiUri,
|
||||
globalSettings.Installation.IdentityUri,
|
||||
"api.installation",
|
||||
"api.licensing",
|
||||
$"installation.{globalSettings.Installation.Id}",
|
||||
globalSettings.Installation.Key,
|
||||
logger)
|
||||
|
Loading…
x
Reference in New Issue
Block a user