ShieldXSS 1.0.3
dotnet add package ShieldXSS --version 1.0.3
NuGet\Install-Package ShieldXSS -Version 1.0.3
<PackageReference Include="ShieldXSS" Version="1.0.3" />
<PackageVersion Include="ShieldXSS" Version="1.0.3" />
<PackageReference Include="ShieldXSS" />
paket add ShieldXSS --version 1.0.3
#r "nuget: ShieldXSS, 1.0.3"
#:package ShieldXSS@1.0.3
#addin nuget:?package=ShieldXSS&version=1.0.3
#tool nuget:?package=ShieldXSS&version=1.0.3
๐ก๏ธ ShieldXSS โ ASP.NET Core Security Middleware
ShieldXSS is a lightweight, fast, and simple security middleware for ASP.NET Core (.NET 8/10) that provides essential protection against malicious input.
It is designed to be small, dependency-free, and extremely easy to integrate.
๐ Features
- โ๏ธ XSS detection (regex-based)
- โ๏ธ SQL injection detection
- โ๏ธ IP-based rate limiting
- โ๏ธ Automatic security headers
- โ๏ธ Custom XSS / SQL patterns
- โ๏ธ Zero external dependencies
- โ๏ธ Optimized performance (LINQ-free hot path)
๐ฆ Installation
.NET CLI
dotnet add package ShieldXSS
Package Manager
Install-Package ShieldXSS
Quick Start
1. Register ShieldXSS in Program.cs
builder.Services.AddShieldXSS(options =>
{
options.EnableXSSProtection = true;
options.EnableSQLInjectionProtection = true;
options.EnableRateLimiting = true;
options.MaxAttempts = 5;
options.TimeWindow = TimeSpan.FromMinutes(1);
options.BlockedResponseMessage = "Request blocked for security reasons";
});
2. Add the middleware
Use UseShieldXSS in the ASP.NET pipeline:
app.UseShieldXSS();
Usage with ConfigureServices / Configure
web.ConfigureServices(services =>
{
services.AddShieldXSS(options =>
{
options.EnableXSSProtection = true;
options.EnableSQLInjectionProtection = true;
options.EnableRateLimiting = true;
options.MaxAttempts = 20;
options.TimeWindow = TimeSpan.FromMinutes(1);
options.BlockedResponseMessage = "Access denied by ShieldXSS middleware.";
});
});
web.Configure(app =>
{
app.UseMiddleware<ShieldXSSMiddleware>();
});
โ๏ธ Configuration Options
EnableXSSProtection โ enables XSS pattern detection
EnableSQLInjectionProtection โ enables SQL injection detection
EnableRateLimiting โ enables IP-based throttling
MaxAttempts โ requests allowed per window
TimeWindow โ rate-limit window duration
BlockedResponseMessage โ message on blocked request
CustomXSSPatterns โ additional XSS regex rules
CustomSQLPatterns โ additional SQL regex rules
๐งช Attack Testing
XSS examples:
?q=<script>alert(1)</script>
?q=<img src=x onerror=alert(1)>
?q=javascript:alert(1)
?q=document.cookie
SQL injection examples:
?id=1 OR 1=1
?id=10';DROP TABLE Users--
?q=UNION SELECT username FROM users
?q=CHAR(65)+CHAR(66)
Rate limiting test (CMD):
for /l %i in (1,1,20) do curl "http://localhost:51179/"
Rate limiting test (PowerShell):
1..20 | % { curl "http://localhost:51179/" }
Expected:
First 5 โ 200 OK
After limit โ 403 Forbidden
๐ Security Headers
X-Content-Type-Options: nosniff
X-Frame-Options: DENY
X-XSS-Protection: 1; mode=block
Referrer-Policy: strict-origin-when-cross-origin
Content-Security-Policy: default-src 'self'
โก Performance
- Low latency
- Thread-safe rate limiting
- Minimal allocations
- Precompiled regex
- LINQ-free hot path
๐ License
MIT License โ see LICENSE.
๐ค Maintainer
Created and maintained by Amelia Keki
https://github.com/ameliagherdan/ShieldXSS/issues
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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. |
-
net8.0
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0)
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 |
|---|---|---|
| 1.0.3 | 556 | 12/1/2025 |