ASP.NET Framework (including OWIN)
Requirements
Installation & Configuration
1
Install Zen Firewall by Aikido
dotnet add package Aikido.Zen.DotNetFrameworkInstall-Package Zen.Aikido.DotNetFramework<appSettings>
<add key="Aikido:AikidoToken" value="your-api-key" />
</appSettings>protected void Application_Start()
{
// other code
Zen.Start();
}public void Configuration(IAppBuilder app)
{
// other code
Zen.Start();
}4
Enable Rate limiting and User blocking
public void Application_Start()
{
Zen.SetUser(context => new User(context.User.Identity.Name, context.User.Identity.Name));
Zen.Start();
}public void Configuration(IAppBuilder app)
{
Zen.SetUser(context => new User(context.User.Identity.Name, context.User.Identity.Name));
Zen.Start();
}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?
