An open API service indexing awesome lists of open source software.

https://github.com/k3rnel-dev/simpleobfuscator-library

The simplest example of an obfuscator library
https://github.com/k3rnel-dev/simpleobfuscator-library

dll-obfuscation obfuscated-code obfuscator

Last synced: 6 months ago
JSON representation

The simplest example of an obfuscator library

Awesome Lists containing this project

README

          

# 🛡️ Simple Obfuscator Module
![CSHARP](https://img.shields.io/badge/Language-CSHARP-aqua?style=for-the-badge&logo=CS)
![](banner.png)

## 🅰️ Description

**Simple Obfuscator Module** — a library designed for easy obfuscation of .NET code. It provides a simple and effective way to mutate the original application names, making it harder to read

## 💻 Obfuscate-Review:


screen

### 🖥️ Example Usage
* The first add link to .dll file in VS** on your project
* Secondly after add link, you can use this example code:
```csharp
private void ButtonEample_click(object sender, EventArgs e)
{
using (OpenFileDialog openFileDialog = new OpenFileDialog())
{
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
using (SaveFileDialog saveFileDialog = new SaveFileDialog())
{
if (saveFileDialog.ShowDialog() == DialogResult.OK)
{
try
{
byte[] fileData = System.IO.File.ReadAllBytes(openFileDialog.FileName);
SimpleObfuscator.Obfuscator.Save(fileData, saveFileDialog.FileName);
}
catch (Exception ex)
{
MessageBox.Show($"Error: {ex.Message}");
}
}
}
}
}
}
```
## ✨ Requirements
`You need a dnlib for compiling this project and 4.0 framework ⚠️ `

### > **[Download compiled-version](https://github.com/K3rnel-Dev/SimpleObfuscator-Library/releases/tag/Builds)**