Skip to content

A .NET Framework (.NET Core in the future) obfuscator. Owner is currently out sick thus working on project is stopped.

Notifications You must be signed in to change notification settings

obfuscators-2019/cil-examining

 
 

Repository files navigation

.NET CILExamining

CILExamining - is an obfuscator written in C# using dnlib library on .NET Framework (.NET Core in the future). This is an experiment for me, owner of the repository, since I was bad in RE and some elseshit.

Inspired by charterino/AsStrongAsFuck obfuscator.

Running it

Currently it's only coding based running, all parameters are being set just in code to test features manually. Soon it'll be refactored.

Code basis

Obfuscations

All obfuscations are implementing IObfuscation interface, which contains a method Execute with one passed parameter - dnlib.ModuleDef instance.

To write own obfuscations just make a class implementing IObfuscation interface.

using CILExamining.Obfuscations;

...

public sealed class FooBarObfuscation : IObfuscation {
    ...
    public void Execute(ModuleDef moduleDef) {
        ...
        // Here you can implement logic which will execute obfuscations
        // like executing own methods here.

        // Example:

        this.ObfuscateMethods(moduleDef.Types.Where(k => k.Name.StartsWith("DoObfuscate_")));
        ...
    }
    ...
}

...

This class will be found in bootstrap and will have been casted as IObfuscation will be executed.

About

A .NET Framework (.NET Core in the future) obfuscator. Owner is currently out sick thus working on project is stopped.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%