The application firewall that can be used in .NET 5.0, .Net CORE 3.1 and .NET standard 2.1 applications that
would benefit for protection against several types of attacks and is easily activated by service integration.
services.AddFireWall(FireWallTrial.License, FireWallTrial.DomainKey
,...
More information
Provide insight into the communication between the server hosting the website and the outside world and allows the users to observe communication and look for irrational or known malicious interaction.
The static class that exposes this functionality can be found at...
More information
Use the Userstack service to extend the firewall's UserAgent meta data.
To use the software use dependency injection during services registration
services.AddFireWall(FireWallTrial.License, FireWallTrial.DomainKey
, domainName: new Uri("https://www.your-domain.com/", UriKind.Absolute)
,...
More information
User when you would like to automatically process violations to capture the ISP for those that have attempted to penetrate your web application.
To integrate the WHOIS resolver use the UseWhoisResolver extension method as shown bellow
services.AddFireWall(FireWallTrial.License,...
More information