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;
|
namespace Bit.Api.Controllers;
|
||||||
|
|
||||||
[Route("phishing-domains")]
|
[Route("phishing-domains")]
|
||||||
[Authorize("Application")]
|
[Authorize("PhishingDomains")]
|
||||||
public class PhishingDomainsController(IPhishingDomainRepository phishingDomainRepository) : Controller
|
public class PhishingDomainsController(IPhishingDomainRepository phishingDomainRepository) : Controller
|
||||||
{
|
{
|
||||||
[HttpGet]
|
[HttpGet]
|
||||||
|
@ -143,6 +143,14 @@ public class Startup
|
|||||||
(c.Value.Contains(ApiScopes.Api) || c.Value.Contains(ApiScopes.ApiSecrets))
|
(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>();
|
services.AddScoped<AuthenticatorTokenProvider>();
|
||||||
|
@ -21,7 +21,7 @@ public class CloudPhishingDomainRelayQuery : BaseIdentityClientService, ICloudPh
|
|||||||
httpFactory,
|
httpFactory,
|
||||||
globalSettings.Installation.ApiUri,
|
globalSettings.Installation.ApiUri,
|
||||||
globalSettings.Installation.IdentityUri,
|
globalSettings.Installation.IdentityUri,
|
||||||
"api.installation",
|
"api.licensing",
|
||||||
$"installation.{globalSettings.Installation.Id}",
|
$"installation.{globalSettings.Installation.Id}",
|
||||||
globalSettings.Installation.Key,
|
globalSettings.Installation.Key,
|
||||||
logger)
|
logger)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user