我正在尝试用文件中的方法注入一个类。我知道 ConfuserEx 的源代码中有一个可行的解决方案,但它有点需要编辑我想避免的 dnlib 代码。
ModuleDef manifestModule = assembly.ManifestModule;
Importer importer = new Importer(manifestModule);
IMethod method = importer.Import(typeof(AntiDumpRuntime).GetMethod("Initialize"));
TypeDef type = new TypeDefUser("AntiDump");
type.Methods.Add(method.ResolveMethodDefThrow()); // dnlib.DotNet.MemberRefResolveException: 'Could not resolve method: System.Void Obfuscator.Core.Protections.AntiDump.AntiDumpRuntime::Initialize() (Obfuscator, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null)'
manifestModule.Types.Add(type);
在上面的代码片段中,我尝试通过类来做到这一点Importer
,但它在注释行上引发了异常。
这是ConfuserEx的解决方案: https ://github.com/yck1509/ConfuserEx/blob/master/Confuser.Core/Helpers/InjectHelper.cs 这里是需要在dnlib中进行的修改:https ://github.com /yck1509/dnlib/blob/master/src/DotNet/Importer.cs#L72