AspNetCoreRateLimit icon indicating copy to clipboard operation
AspNetCoreRateLimit copied to clipboard

ASP.NET Core rate limiting middleware

Results 174 AspNetCoreRateLimit issues
Sort by recently updated
recently updated
newest added

We use AspNetCoreRateLimit in our projects. Everything was pretty good until now. We need additional features for that package as below: We should apply rate limit rules for clients by...

I recently started using this package, but I don't know and can't find how to make a blacklist for endpoints? I tried doing this: ``` "IpRateLimiting": { "EnableEndpointRateLimiting": true, "StackBlockedRequests":...

I am migrating a .NET Framework 4 application, which uses WebApiThrottle to asp.net core. With WebApiThrottle I have a configuration with default limits and for some specific endpoints, I want...

The AspNetCoreRateLimit already supports some X-Rate-* rate limit headers, which is great. I was wondering if it would be possible to add support for rate limit headers which are being...

Currently redis ttl is set to max value even if request is made at the end of interval. This can be confusing to API users and is misleading. I suggest...

AspNetCoreRateLimit.Redis is not working. just adding (and some config) var redisOptions = ConfigurationOptions.Parse("dc"); services.AddSingleton(provider => ConnectionMultiplexer.Connect(redisOptions)); services.AddRedisRateLimiting(); is not enough: 'Unable to resolve service for type 'Microsoft.Extensions.Caching.Distributed.IDistributedCache' while attempting to...

It would be useful to settings be dynamically read when changed, so usage of IOptionsSnapshot could be used instead of IOptions

enhancement

Hi, This PR contains the improvemnets I did for using it in our project. I provide you a PR just in case you are interested on merging it. The new...

I'm Fabian Rodriguez from Argentina. I'm trying to do a deploy of your component AspNetCoreRateLimit and we need to set it in a dinamic form the IpWhitelist, so we don't...