基于最新源码编译的.net脱壳工具.
1. 检测混淆
de4dot.exe -d xxxx.dll
2. 批量反混淆
de4dot.exe -r c:input -ru -ro c:output
常用参数:
-r DIR Scan for .NET files in all subdirs
//搜索当前目录以及子目录中所有程序集并去混淆
--dont-rename Don't rename classes, methods, etc.
//禁止所有重命名(比如类,方法,字段,属性,资源......)
-ro DIR Output base dir for recursively found files
//同-r参数,但是并不搜索子目录,仅限当前目录
-ru Skip recursively found files with unsupported obfuscator
//跳过查找到带有de4dot不支持的混淆器的程序集
-d Detect ob
1