Background
Many open-source obfuscators, such as ConfuserEx 1 and DotNetPatcher, 2 are available on GitHub, but most of them are out of support or maintenance. I tried to use the above solution to obfuscate my MAUI project but got some errors during the obfuscation processing. When I struggled with these errors, I found and tried a new obfuscator named BitMono, 3 which has been developed since 2022. The most important part is that it supports a new version of .NET (6.0 is supported) by comparison and obfuscates the MAUI app without an error.
Overview
I will not put much effort into the BitMono introduction in this post. In fact, its GitHub page already provides details about this so you can browse and see the GitHub page for the introduction. Instead, this post focuses on how to merge the obfuscate process into the publishing flow of the .NET MAUI app for Windows. I split these into two posts so each does not seem too long - The first post focuses on environment setup, and the second focuses on merging the obfuscate process.
BitMono
GitHub page: https://github.com/sunnamed434/BitMono
Capture in Apr. 2024, BitMono’s latest version of pre-release as v0.20.1-alpha.36 provides 16 protection. You can see about each protection description via BitMono documentation. 4 This post also arranges the table, which includes the protection name, description, and limitations of BitMono provided. 5
Environment Setup
Test on Windows 11 23H2 x64
- Install .NET 6 SDK (BitMono requirement)
2. Download the latest BitMono version on the GitHub page
Download BitMono on GitHub
- Unzip the zip file and add the folder path created by unzipping (call
BitMono folder
in this post) to theWindows environment variable
- In the BitMono folder, open the file named
obfuscation.json
- Set the variables
Watermark
andOpenFileDetinationInFileExplorer
asfalse
values
The strategy of choosing the right protection for your application
Not every protection is suitable for a .NET MAUI project (or your project) because some protection is only for .NET Core, and some protection is supported by the Mono framework only. On the other hand, some protection, such as StringsEncryption
, has a significant impact on the application’s performance, 6 so an application (may) shouldn’t be protected by this if it is sensitive to performance. To decide what BitMono protection you should adopt for your .NET MAUI project, please browse and analyze the BitMono documentation and each protection advantage and drawback. 4
Enable/Disable the protection
- Open the file named
protections.json
in the BitMono folder (folder created by unzipping the BitMono you have downloaded). - Edit the protection field
Enabled
astrue
orfalse
to enable or disable the corresponding protection.The Protection Configuration
Once the above steps are finished, we can move on to the next session - Merge the obfuscate process into the publishing flow of the .NET MAUI app for Windows. This will be introduced in the next post.
Reference
Martin Karing et al. (2022). ConfuserEx: An open-source, free protector for .NET applications. Retrieved from https://web.archive.org/web/20240217050812/https://github.com/mkaring/ConfuserEx ↩︎
3DotDev. (2020). DotNetPatcher: DotNet Obfuscator/Packer. Retrieved from https://web.archive.org/web/20210116232701/https://github.com/3DotDev/DotNetPatcher ↩︎
sunnamed434 et al. (2024). BitMono: Unlock new level of security with BitMono. Retrieved from https://web.archive.org/web/20240407131159/https://github.com/sunnamed434/BitMono ↩︎
sunnamed434 et al. (2024). BitMono — BitMono 0.1 documentation. Retrieved from https://web.archive.org/web/20240407131809/https://bitmono.readthedocs.io/en/latest/index.html ↩︎ ↩︎
sunnamed434 et al. (2023). StringsEncryption — BitMono 0.1 documentation. Retrieved from https://web.archive.org/web/20240407163929/https://bitmono.readthedocs.io/en/latest/protections/stringsencryption.html ↩︎