Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/.net/22.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/extjs/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C#-检测模糊器_C#_.net_C# 4.0_C# 3.0_C# 2.0 - Fatal编程技术网

C#-检测模糊器

C#-检测模糊器,c#,.net,c#-4.0,c#-3.0,c#-2.0,C#,.net,C# 4.0,C# 3.0,C# 2.0,直接回答我的问题:我应该如何查看程序集的类。(.exe,dll),如果所选程序包含类名,则将其写入控制台“class”+Classfound+“found!”,我要做的是,制作一个控制台应用程序,用于检测所选可执行文件/dll文件上使用的混淆器。我花了些时间浏览了互联网,了解如何反映一些课程等,但我什么也没找到 感谢您的帮助,谢谢 有很多方法可以检测混淆器-主要是项目中的熵和异常或特定包装商的签名 检查此(开源)中的一些线索: 引述: 检测模糊器 Use the -d option to de

直接回答我的问题:我应该如何查看程序集的类。(.exe,dll),如果所选程序包含类名,则将其写入控制台“class”+Classfound+“found!”,我要做的是,制作一个控制台应用程序,用于检测所选可执行文件/dll文件上使用的混淆器。我花了些时间浏览了互联网,了解如何反映一些课程等,但我什么也没找到


感谢您的帮助,谢谢

有很多方法可以检测混淆器-主要是项目中的熵和异常或特定包装商的签名

检查此(开源)中的一些线索:

引述:

检测模糊器
Use the -d option to detect the obfuscator without deobfuscating any assembly.

Find all .NET assemblies and detect obfuscator. If it's an unsupported obfuscator or if it's not obfuscated, it will print "Unknown obfuscator".

de4dot -d -r c:\input
Same as above except that it will only show which files have been obfuscated by a supported obfuscator.

de4dot -d -r c:\input -ru
Detect obfuscator

de4dot -d file1.dll file2.dll file3.dll