⚠️ ⚠️ NOT RECOMMENDED FOR .NET 8.0+⚠️ ⚠️ : Please use the new Webcil format that is enabled by default in .NET 8.0. More info here.
This package attempts to guard against false positives from antiviruses that flag Blazor Wasm as malware (up to .NET version 7.0).
- BitDefender Total Security (v26.0.10.45)
- BitDefender Endpoint Security Tool (v7.4.3.146)
- Smoothwall Firewall - Confirmed by peterthorpe81
- Sophos Endpoint Agent - Confirmed by peterthorpe81
- Forcepoint Firewall - Confirmed by egil
- GDATA Internet Security - Confirmed by paulguz-datapa
📣 If you have used this package and has helped you bypass any false positives from other security software, please consider creating an issue with your experience to contribute to this list.
🛡️ You can use virustotal's online scanner for some indication of how various antiviruses view your site.
This package injects some custom MSBuild tasks that do the following during publishing:
- Obfuscates all client assemblies so that firewalls and antiviruses don't see them as executables. Obfuscation methods supported:
- Using a key to XOR all client assemblies (default) .
- OR
- Changing the MZ header of all client assemblies to BZ, a custom header (less aggressive - more info here) .
- Renames the extension of all client assemblies from .dll to .bin .
- Swaps Blazor's default caching mechanism with a custom one that saves the obfuscated assemblies to the cache instead of the unobfuscated ones. This is because some antiviruses are flaging the cached Blazor files that are being saved on the disk by the browser.
- Adds a
beforeStart
Blazor initialization method (more info here), that uses a customloadBootResource
function to restore the obfuscation of the assemblies after downloaded, but before loaded by dotnet.wasm.
- Add the nuget package in your Client (wasm) AND your Server (if using Blazor wasm hosted) projects.
dotnet add package BlazorWasmAntivirusProtection
- (Progressive Web Applications only): If you are using the Blazor Wasm PWA template, update the following line in your
service-worker.published.js
file to include.bin
files:
const offlineAssetsInclude = [/\.bin$/, /\.dll$/, /\.pdb$/, /\.wasm/, /\.html/, /\.js$/, /\.json$/, /\.css$/, /\.woff$/, /\.png$/, /\.jpe?g$/, /\.gif$/, /\.ico$/, /\.blat$/, /\.dat$/ ];
- Publish your app in Release mode and test it!
dotnet publish Server\BlazorHostedSampleApp.Server.csproj -c Release
Nuget package page can be found here.
While using XOR obfuscation does not change the actual size of a dll file, it does affect its compressed size. The bigger the XOR key used, the worse the compression gets.
The default XOR key is the string bwap
.
Disabling trimming in your project and using this package at the same time is not supported. There is an issue tracking this limitation here.
<!-- Not Supported -->
<PublishTrimmed>false</PublishTrimmed>
The following options allow you to customize the tasks executed by this package.
If you want to use a different extension for renaming dlls, for example ".blz", add the following property in the published project's .csproj file (Server project if using Blazor hosted).
<RenameDllsTo>blz</RenameDllsTo>
You can disable dll renaming by adding the following property in the published project's .csproj file (Server project if using Blazor hosted).
<DisableRenamingDlls>true</DisableRenamingDlls>
You can change or disable dll obfuscation by adding the following property in your Client project's .csproj file. Supported values:
None
ChangeHeaders
Xor
(default)
<!-- Disables dll obfuscation -->
<ObfuscationMode>None</ObfuscationMode>
You can change the key that is used for the XOR obfuscation adding the following property in your Client project's .csproj file.
<!-- Changes the dll obfuscation xor key -->
<XorKey>mykey</XorKey>
You can disable boot resources caching by using the following property in your Client project's .csproj file, just as you would in any Blazor project. More info here.
<BlazorCacheBootResources>false</BlazorCacheBootResources>
This work was inspired by the post in dotnet/aspnetcore#31048 (comment) by github user tedd
2.4.5
- Fixes #48 (Contribution by sykesbPragmatics)
2.4.0
- Fix for gzip satellite assemblies being compressed from original verion instead of obfuscated one.
- Changed target back to .net 6.0.
2.3.0
2.2.0
- Fix when publishing from Visual Studio #36
2.1.0
- Fix targeting .net 7.0 correctly
- Changed default Xor key to be a bit more complex.
2.0.0
- Upgraded to .net 7.0
1.9.0
- Changed "blazor.boot.json.gz" and "blazor.boot.json.br" to be recompressed instead of deleted. (Contribution by jsakamoto)
1.8.5
- Changed default Xor key to be smaller so that the resulting obfuscated dlls are more compression friendly.
1.8
- Fix: There was a problem caching the boot resources when a custom
loadBootResource
method was given inBlazor.start()
.
1.7
- New feature: Swaped Blazor's default caching mechanism with a custom one that saves the obfuscated assemblies on the cache instead of the unobfuscated ones. This is because some antiviruses are flaging the cached Blazor files that are being saved on the disk by the browser.
1.6
- Fix for publishing twice before cleaning (regression) #13
1.5
- Added support for multiple dll obfuscations, changing the default to XORing the dlls instead of just changing the headers.
1.4
- Added support for Multiple Blazor Wasm apps under the same Server project #8
1.3
- Added support for Blazor Wasm PWA apps
1.2
- Fixed sequential publishing issue.
1.0
- Added customization options.
0.1
- Initial release.