How to obfuscate a C# application on Linux? Contents .NET obfuscator for Linux Creating a console application to obfuscate How to enable obfuscation? Conclusion .NET obfuscator for Linux Initially, applications built for .NET could run …
Continue readingCategory: Uncategorized
How to obfuscate C# application in Visual Studio
A .NET obfuscator for Visual Studio Contents Reasons to use obfuscators Enable obfuscation in Visual Studio Summary In this tutorial, we will show you how to obfuscate a .NET application in Visual Studio. ArmDot is …
Continue readingHow to obfuscate a Universal Windows Platform (UWP) application?
Contents Why is it essential to obfuscate UWP applications? Prepare a sample application. Prepare the project for obfuscation. Conclusion Why is it essential to obfuscate UWP applications? UWP is a modern platform aimed to create …
Continue readingHow to obfuscate .NET application in JetBrains Rider
Contents Why do developers need a .NET obfuscator? A sample application checks password Comparison of original and obfuscated code Conclusion In this article, you will learn how to obfuscate a .NET application in JetBrains Rider. …
Continue readingHow to obfuscate Blazor App?
What is Blazor? Blazor is a modern web framework from Microsoft aimed to let developers write web applications in C#. Blazor WebAssembly is one of the Blazor editions that allows to create single-page apps in …
Continue readingDoes obfuscation affect performance?
Can obfuscation affect performance? Almost every commercial application nowadays uses code protection. Traditionally, .NET applications are protected by obfuscation. An obfuscator renames metadata, changes the code, making it difficult to decode, hides resources, encrypts string …
Continue readingHow to write hardware id generator?
Developers, who write in C#, VB.Net, or any other .Net language, often ask how to get and check hardware id in their favorite language. No matter what language you use, the idea is the same. …
Continue readingAn obfuscator for VB.Net
What is obfuscation? Almost all VB.Net developers know that compiled .Net code is well readable and easy to understand. Most names, that a developer uses for classes, methods, and fields, are opened, and everyone can …
Continue readingC# obfuscator
C# code is an intellectual property, no company wants their code to be stolen. Unfortunately, compiled code is opened to everyone: it is easy to extract, modify and rebuild it. Another problem is that embedded …
Continue reading