Walter.Web.FireWall.EventLog
2020.10.12.1
Prefix Reserved
See the version list below for details.
dotnet add package Walter.Web.FireWall.EventLog --version 2020.10.12.1
NuGet\Install-Package Walter.Web.FireWall.EventLog -Version 2020.10.12.1
<PackageReference Include="Walter.Web.FireWall.EventLog" Version="2020.10.12.1" />
<PackageVersion Include="Walter.Web.FireWall.EventLog" Version="2020.10.12.1" />
<PackageReference Include="Walter.Web.FireWall.EventLog" />
paket add Walter.Web.FireWall.EventLog --version 2020.10.12.1
#r "nuget: Walter.Web.FireWall.EventLog, 2020.10.12.1"
#:package Walter.Web.FireWall.EventLog@2020.10.12.1
#addin nuget:?package=Walter.Web.FireWall.EventLog&version=2020.10.12.1
#tool nuget:?package=Walter.Web.FireWall.EventLog&version=2020.10.12.1
This package targets projects with dedicated servers and allows you to protect your firewall using annotations and pre-specified rules. A full getting started document is available at www.asp-waf.com in form of a PDF, compiled help and simple instructions
The bellow sample shows how you integrate and enable the firewall in your project windows Eventlog for reporting.
services.AddFireWall(FireWallTrail.License, FireWallTrail.DomainKey
, domainName: new Uri("https://www.your-domain.com", UriKind.Absolute)
, options =>
{
options.Cypher.ApplicationPassword = "123456$even";
options.ApplicationName = "Name as used for reporting";
options.ApplicationTag = "ITIL Tag";
options.Rules.BlockRequest.BlockDuration.SlideExpiration = true;
options.Rules.BlockRequest.BlockDuration.Expires = TimeSpan.FromSeconds(10);
//used by JavaScript in the browser
options.WebServices.IsUserApiUrl = new Uri(Links.IsUserEndpoint, UriKind.Relative);
options.WebServices.RegisterLinksApiUrl = new Uri(Links.SiteMapEndPoint, UriKind.Relative);
options.WebServices.BeaconApiUrl = new Uri(Links.BeaconPoint, UriKind.Relative);
}).UseEventLogLogging(options=>{
options.LogName = "FireWall";
options.SourceName = "www.test.dll";
});
//protect each MVC controller
services.AddMvc(options =>
options.Filters.Add<Walter.Web.FireWall.Filters.FireWallFilter>()
);
The firewall is fully configurable and has quite a few options that allow you to protect against fishing, scrubbing, cross-site attach and much more.
There are a ton of configuration options available using the many annotations
namespace MyProject.Controllers
{
using Walter.Web.FireWall;
using Walter.Web.FireWall.Annotations;
using Walter.BOM.Geo;
[Geo(blockLocation: GeoLocation.AFRICA | GeoLocation.LATIN_AMERICA | GeoLocation.Netherlands)]
[Users(users: UserTypes.IsHuman | UserTypes.IsSearchEngine)]
[BlockDuration(duration: 60, sliding: true, doubleDurationPerIncedent: true)]
public sealed class MembersController : Controller
{
private readonly ILogger<MembersController> _logger;
private readonly IPageRequest _page;
public HomeController(ILogger<MembersController> logger,IPageRequest page)
{
_logger = logger;
_page=page;
}
public IActionResult Index()
{
return View();
}
[Ignore]
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{
//the page field will contain all the errors the user ran into
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
}
}
This is just a small set of options of what's possible with the EventLogger
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp3.0 is compatible. netcoreapp3.1 is compatible. |
| .NET Standard | netstandard2.1 is compatible. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETCoreApp 3.0
- Microsoft.Windows.Compatibility (>= 3.1.1)
- Walter.BOM (>= 2020.10.12.1)
- Walter.Web.Firewall.Core (>= 2020.10.12.1)
-
.NETCoreApp 3.1
- Microsoft.Windows.Compatibility (>= 3.1.1)
- Walter.BOM (>= 2020.10.12.1)
- Walter.Web.Firewall.Core (>= 2020.10.12.1)
-
.NETStandard 2.1
- Microsoft.Windows.Compatibility (>= 3.1.1)
- Walter.BOM (>= 2020.10.12.1)
- Walter.Web.Firewall.Core (>= 2020.10.12.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2025.9.1452 | 202 | 9/28/2025 |
| 2025.8.13.1223 | 232 | 8/13/2025 |
| 2025.7.30.1003 | 164 | 7/30/2025 |
| 2025.7.10.1347 | 215 | 7/10/2025 |
| 2025.6.30.1407 | 207 | 7/1/2025 |
| 2025.6.12.1057 | 381 | 6/12/2025 |
| 2025.4.17.1816 | 299 | 4/17/2025 |
| 2025.3.13.1323 | 240 | 3/13/2025 |
| 2025.2.26.1642 | 200 | 2/26/2025 |
| 2025.2.25.1033 | 196 | 2/26/2025 |
| 2025.2.24.1556 | 184 | 2/25/2025 |
| 2025.2.16.1149 | 200 | 2/19/2025 |
| 2025.2.15.1316 | 186 | 2/15/2025 |
| 2025.1.16.1410 | 195 | 1/16/2025 |
| 2025.1.4.1941 | 215 | 1/4/2025 |
| 2025.1.2.1544 | 220 | 1/3/2025 |
| 2024.12.14.838 | 186 | 12/14/2024 |
| 2020.10.12.1 | 2,385 | 10/12/2020 |
05 October 2020
- Update terms
- update NuGet package references
30 September 2020
- Generate a specific error message when permission is refused for the event log
09 September 2020
- update NuGet package references
08 September 2020
- Add support for .net core 3.0 and 3.1
- Update NuGet package references
- Update Documentation
04 September 2020
- Update package reference to firewall package
27.08.2020
- Add Referrer and root page to event log incident if user is blocked
01.01.2020
- Initial release