yck1509 / ConfuserEx

An open-source, free protector for .NET applications
http://yck1509.github.io/ConfuserEx/
Other
3.57k stars 1.63k forks source link

Decodable renaming question #476

Open ghost opened 8 years ago

ghost commented 8 years ago

Can I somehow specify the renmaing mode via a the confuser project file or must I use the [Obfuscation] attribute? Can I somehow specify the [Obfuscation] attribute on assembly level or must I add the attribute to every class that I want a specifc renaming mode to be used for?

I want the renaming mode to be Decodable for all the types in my assembly.

alexmurari commented 8 years ago

Here it is.

Add this to your CRPROJ file. All types will be renamed by a decodable renamer this way.

    <protection id="rename" >
        <argument name="mode" value="decodable" />
    </protection>
ghost commented 8 years ago

Thank you for the quick answer! I'm going to test this soon and report back. Is there anything I could contribute to make this more obvious in the documentation? This seems to be a very important option for anything that is not a simple crackme...

Greets