I've been trying to inject a type and method for a good day now lol. Um. Here is some of the code: I'm basically just trying to replace System.Convert.FromBase64String with Simpy.Simp but I can't seem to get it to work... (I used InjectHelper.cs from https://github.com/yck1509/ConfuserEx/blob/master/Confuser.Core/Helpers/InjectHelper.cs) and a modded dnlib from https://github.com/yck1509/dnlib/tree/532c767a9a4f6af51cd4eb5d1c0af750c8509c5d)
ModuleDefMD moduleDefMD = ModuleDefMD.Load(typeof(runtime).Module);
TypeDef type = new TypeDefUser("Simpy");
type.Attributes = TypeAttributes.AutoLayout | TypeAttributes.Class;
moduleDef.Types.Add(type);
TypeDef typeDef = moduleDefMD.ResolveTypeDef(MDToken.ToRID(typeof(Simpy).MetadataToken));
//InjectHelper.Inject(typeDef, type, moduleDef);
IEnumerable<IDnlibDef> source = InjectHelper.Inject(typeDef, type, moduleDef);
init = (MethodDef)source.Single((IDnlibDef method) => method.Name == "Simp");
foreach (TypeDef typeDef2 in moduleDef.Types)
{
foreach (MethodDef methodDef in typeDef2.Methods)
{
bool flag = methodDef.Body == null;
if (!flag)
{
methodDef.Body.SimplifyBranches();
for (int i = 0; i < methodDef.Body.Instructions.Count; i++)
{
bool flag2 = methodDef.Body.Instructions[i].OpCode == OpCodes.Ldstr;
if (flag2)
{
string s = methodDef.Body.Instructions[i].Operand.ToString();
string text = Convert.ToBase64String(Encoding.UTF8.GetBytes(s));
methodDef.Body.Instructions[i].OpCode = OpCodes.Nop;
methodDef.Body.Instructions.Insert(i + 1, new Instruction(OpCodes.Call, moduleDef.Import(typeof(Encoding).GetMethod("get_UTF8", new Type[0]))));
methodDef.Body.Instructions.Insert(i + 2, new Instruction(OpCodes.Ldstr, text));
methodDef.Body.Instructions.Insert(i + 3, new Instruction(OpCodes.Call, init));
methodDef.Body.Instructions.Insert(i + 4, new Instruction(OpCodes.Callvirt, moduleDef.Import(typeof(Encoding).GetMethod("GetString", new Type[]
{
typeof(byte[])
}))));
i += 4;
}
}
}
}
}