摘要: 用.net里面的using System.Diagnostics.Process类可以实现线程注入,其代码如下:Process process = new Process();process.StartInfo.FileName = "explorer.exe";//注入到explorer,可以改为你想要注入的程序线程process.StartInfo.CreateNoWindow = true;... 阅读全文
posted @ 2009-07-15 11:18 小师傅 阅读(227) 评论(0) 推荐(0) 编辑