Nytro Posted December 24, 2012 Report Posted December 24, 2012 de4dot .NET deobfuscator and unpacker[h=1]Description[/h] de4dot is an open source (GPLv3) .NET deobfuscator and unpacker written in C#. It will try its best to restore a packed and obfuscated assembly to almost the original assembly. Most of the obfuscation can be completely restored (eg. string encryption), but symbol renaming is impossible to restore since the original names aren't (usually) part of the obfuscated assembly. [h=1]Features[/h] Here's a pseudo random list of the things it will do depending on what obfuscator was used to obfuscate an assembly:Inline methods. Some obfuscators move small parts of a method to another static method and calls it.Decrypt strings statically or dynamicallyDecrypt other constants. Some obfuscators can also encrypt other constants, such as all integers, all doubles, etc.Decrypt methods statically or dynamicallyRemove proxy methods. Many obfuscators replace most/all call instructions with a call to a delegate. This delegate in turn calls the real method.Rename symbols. Even though most symbols can't be restored, it will rename them to human readable strings. Sometimes, some of the original names can be restored, though.Devirtualize virtualized codeDecrypt resources. Many obfuscators have an option to encrypt .NET resources.Decrypt embedded files. Many obfuscators have an option to embed and possibly encrypt/compress other assemblies.Remove tamper detection codeRemove anti-debug codeControl flow deobfuscation. Many obfuscators modify the IL code so it looks like spaghetti code making it very difficult to understand the code.Restore class fields. Some obfuscators can move fields from one class to some other obfuscator created class.Convert a PE exe to a .NET exe. Some obfuscators wrap a .NET assembly inside a Win32 PE so a .NET decompiler can't read the file.Removes most/all junk classes added by the obfuscator.Fixes some peverify errors. Many of the obfuscators are buggy and create unverifiable code by mistake.Restore the types of method parameters and fields [h=1]Supported obfuscators/packers[/h] Agile.NET (aka CliSecure)Babel.NETCodeFortCodeVeilCodeWallCryptoObfuscatorDeepSea ObfuscatorDotfuscator.NET ReactorEazfuscator.NETGoliath.NETILProtectorMaxtoCodeMPRESSRummageSkater.NETSmartAssemblySpices.NetXenocodeSome of the above obfuscators are rarely used (eg. Goliath.NET), so they have had much less testing. Help me out by reporting bugs or problems you find.Download:https://bitbucket.org/0xd4d/de4dot/downloadsSursa: https://bitbucket.org/0xd4d/de4dot/overview Quote