Unpackers tools - source code C#
AssemblyLoad
Confuser_Methods_Decryptor
ConfuserDelegateKiller
ConfuserStringDecryptor
ExceptionLogger
MegaDumper
Reactor_Decryptor
Resource_Decryptor
Simple_MSIL_Decryptor
StaticDecompressor
Universal_Fixer
"There is no tool in this world which can unpack all packers!
Anyway MegaDumper - dumper, Simple_MSIL_Decryptor - msil decryptor, Universal_Fixer - .NET PE Fixer should do the job for most of them!"
What is Snile? Snile is a super fast IL editing library that can read/write .NET Files. This project was written to be able to be used with obfuscated files. Meaning it won't throw exception's or errors like other .NET libraries do. It can support invalid metadata in the CLR header which is the .NET Header. Snile stand's for Super .NET IL Editor Features Can read any .NET Module Can read any file with a CLR Header 100% Read/Write to any header. (DOS, NT, FILE, OPTIONAL, DATA_DIRECTORIES, CLR, TABLE) Access to all the file's sections, which you can add/remove sections. Very fast and stable Updated Frequently Examples Some examples with some things you can do with this library. Getting the .text section. [QUOTE]Reader assembly = new Reader("C:\Example.exe"); Section textSection = assembly.GetSections().GetTextSection(); Console.WriteLine("Virtual Address: 0x{0:X}", textSection.GetVirtualAddress());
-Symbol renaming improved: now it only renames invalid and obfuscated names. -New clean detection: before detection was bad. Now used some detections from native obfuscators. -Added Phoenix Protector (thanks to Mr. eXoDia for saying me about this obfuscator). -Clean code (deleted un-useful code and now it's a fast clean).
bugfixes: - Using "Replace All With Code" feature was unable to resolve the working assembly in some cases, preventing some advanced alterations to the source code. - Fixed injection of nested types. - Properly handle module characteristics.