Programmatic MSIL injection

房东的猫 提交于 2019-12-03 04:05:26

I guess the question I would ask is "how would you deploy the patch"? Somewhere, you have to deploy something to fix a bug that is already out in the wild. Why would recompiling the dll and releasing the fixed version really be an issue? My guess is that figuring out how to programatically inject MSIL is going to be more trouble than simply redeploying a fixed assembly.

Rather than injecting MSIL at runtime, have you considered inserting the source directly into the assembly?

You can disassemble with ildasm, insert your MSIL, and then reassemble with ilasm, then deploy the product of that.

If the reason you don't want to redeploy the whole stuff is because it is really half a gig, you should probably use some sort of binary patch tool - that's the first result on Google:

Binary Diff http://www.daemonology.net/bsdiff/

If your exe is signed then that wouldn't be possible. Why can't you just release that single assembly, instead of shipping the whole application again? It seems like you're aiming for a complex solution for a simple problem.

You can use static MSIL Injection. Mono Cecil or PostSharp maybe helpful.

good source of information...

IL Programming ebook

another is MS Press book on IL programming.

steps to decompile to IL and recompile

1. ildasm /output=ConsoleApplication1.il ConsoleApplication1.exe

2. //modify ConsoleApplication1.il code

3. ilasm ConsoleApplication1.il

You will need unmanaged code to perform this successfully but it can be done...

See http://www.codeproject.com/Articles/463508/NET-CLR-Injection-Modify-IL-Code-during-Run-time

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!