mirror of
https://github.com/bitwarden/server.git
synced 2025-04-08 14:38:15 -05:00
94 lines
3.4 KiB
C#
94 lines
3.4 KiB
C#
using AspNetCoreRateLimit;
|
|
using Bit.Core.Models.Api;
|
|
using Bit.Core.Services;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.Extensions.Caching.Memory;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Options;
|
|
using Newtonsoft.Json;
|
|
using System.Threading.Tasks;
|
|
using System.Linq;
|
|
using System;
|
|
|
|
namespace Bit.Core.Utilities
|
|
{
|
|
public class CustomIpRateLimitMiddleware : IpRateLimitMiddleware
|
|
{
|
|
private readonly IpRateLimitOptions _options;
|
|
private readonly IMemoryCache _memoryCache;
|
|
private readonly IBlockIpService _blockIpService;
|
|
private readonly ILogger<IpRateLimitMiddleware> _logger;
|
|
|
|
public CustomIpRateLimitMiddleware(
|
|
IMemoryCache memoryCache,
|
|
IBlockIpService blockIpService,
|
|
RequestDelegate next,
|
|
IOptions<IpRateLimitOptions> options,
|
|
IRateLimitCounterStore counterStore,
|
|
IIpPolicyStore policyStore,
|
|
ILogger<IpRateLimitMiddleware> logger,
|
|
IIpAddressParser ipParser = null)
|
|
: base(next, options, counterStore, policyStore, logger, ipParser)
|
|
{
|
|
_memoryCache = memoryCache;
|
|
_blockIpService = blockIpService;
|
|
_options = options.Value;
|
|
_logger = logger;
|
|
}
|
|
|
|
public override Task ReturnQuotaExceededResponse(HttpContext httpContext, RateLimitRule rule, string retryAfter)
|
|
{
|
|
var message = string.IsNullOrWhiteSpace(_options.QuotaExceededMessage) ?
|
|
$"Slow down! Too many requests. Try again in {rule.Period}." : _options.QuotaExceededMessage;
|
|
httpContext.Response.Headers["Retry-After"] = retryAfter;
|
|
httpContext.Response.StatusCode = _options.HttpStatusCode;
|
|
|
|
httpContext.Response.ContentType = "application/json";
|
|
var errorModel = new ErrorResponseModel { Message = message };
|
|
return httpContext.Response.WriteAsync(JsonConvert.SerializeObject(errorModel));
|
|
}
|
|
|
|
public override void LogBlockedRequest(HttpContext httpContext, ClientRequestIdentity identity,
|
|
RateLimitCounter counter, RateLimitRule rule)
|
|
{
|
|
base.LogBlockedRequest(httpContext, identity, counter, rule);
|
|
var key = $"blockedIp_{identity.ClientIp}";
|
|
|
|
_memoryCache.TryGetValue(key, out int blockedCount);
|
|
|
|
blockedCount++;
|
|
if(blockedCount > 10)
|
|
{
|
|
_blockIpService.BlockIpAsync(identity.ClientIp, false);
|
|
_logger.LogInformation($"Blocked {identity.ClientIp}. Request Info: {GetRequestInfo(httpContext)}");
|
|
}
|
|
else
|
|
{
|
|
_memoryCache.Set(key, blockedCount,
|
|
new MemoryCacheEntryOptions().SetSlidingExpiration(new TimeSpan(0, 5, 0)));
|
|
}
|
|
}
|
|
|
|
private string GetRequestInfo(HttpContext httpContext)
|
|
{
|
|
if(httpContext == null || httpContext.Request == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
var s = string.Empty;
|
|
foreach(var header in httpContext.Request.Headers)
|
|
{
|
|
s += $"H_{header.Key}: {header.Value} | ";
|
|
}
|
|
|
|
foreach(var query in httpContext.Request.Query)
|
|
{
|
|
s += $"Q_{query.Key}: {query.Value} | ";
|
|
}
|
|
|
|
return s;
|
|
}
|
|
}
|
|
}
|