Skip to content

The simplest example of an obfuscator library

Notifications You must be signed in to change notification settings

K3rnel-Dev/SimpleObfuscator-Library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🛡️ Simple Obfuscator Module

CSHARP

🅰️ 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:
    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 ⚠️

About

The simplest example of an obfuscator library

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages