ASP.NET Core
Requirements
Installation & Configuration
1
Install Zen Firewall by Aikido
dotnet add package Aikido.Zen.DotNetCore{
"Aikido": {
"AikidoToken": "your-api-key"
}
}public void ConfigureServices(IServiceCollection services)
{
// other services
services.AddZenFirewall(Configuration);
// other services
}
public void Configure(IApplicationBuilder app)
{
// other middleware
app.UseZenFirewall(); // Place after routing/auth, but early enough to inspect requests.
// other middleware
}4
5
Setup rate limiting in the dashboard



You are rate limited by Aikido firewall. (Your IP: 1.2.3.4)Last updated
Was this helpful?
