1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

Initial stubbing out of the phishing service

This commit is contained in:
Conner Turnbull 2025-03-10 15:37:39 -04:00
parent ac25ec4519
commit 9a6d0e93f8
No known key found for this signature in database
4 changed files with 26 additions and 0 deletions

View File

@ -177,6 +177,7 @@ public class Startup
services.AddBillingOperations();
services.AddReportingServices();
services.AddImportServices();
services.AddPhishingDomainService();
// Authorization Handlers
services.AddAuthorizationHandlers();

View File

@ -2,6 +2,7 @@
using Bit.Api.Vault.AuthorizationHandlers.Collections;
using Bit.Core.AdminConsole.OrganizationFeatures.Groups.Authorization;
using Bit.Core.IdentityServer;
using Bit.Core.Services;
using Bit.Core.Settings;
using Bit.Core.Utilities;
using Bit.Core.Vault.Authorization.SecurityTasks;
@ -106,4 +107,9 @@ public static class ServiceCollectionExtensions
services.AddScoped<IAuthorizationHandler, SecurityTaskAuthorizationHandler>();
services.AddScoped<IAuthorizationHandler, SecurityTaskOrganizationAuthorizationHandler>();
}
public static void AddPhishingDomainService(this IServiceCollection services)
{
services.AddSingleton<IPhishingDomainService, PhishingDomainService>();
}
}

View File

@ -0,0 +1,6 @@
namespace Bit.Core.Services;
public interface IPhishingDomainService
{
Task<IEnumerable<string>> GetPhishingDomainsAsync();
}

View File

@ -0,0 +1,13 @@
using System.Collections.Concurrent;
namespace Bit.Core.Services;
public class PhishingDomainService : IPhishingDomainService
{
private readonly ConcurrentDictionary<string, byte> _phishingDomains = new();
public Task<IEnumerable<string>> GetPhishingDomainsAsync()
{
return Task.FromResult(_phishingDomains.Keys.AsEnumerable());
}
}