开发者

how to find programatically that dll is injected into some process or not using c#

开发者 https://www.devze.com 2023-01-08 18:06 出处:网络
i have to inject a dll into some process .now i want that after injection how to find that dll is injected without using a开发者_高级运维ny third party tools

i have to inject a dll into some process .now i want that after injection how to find that dll is injected without using a开发者_高级运维ny third party tools

strong text


What you can do is get all assemblies that reference the start up assembly by using Assembly.GetReferencedAssemblies() all the way don't till you've got all referenced assemblies and compare that with all loaded assemblies in the current AppDomain, by using AppDomain.Current.GetAssemblies().

0

精彩评论

暂无评论...
验证码 换一张
取 消