卸载外部进程的加载dll

时间:2012-05-06 10:19:36

标签: c# winapi visual-c++

有人知道如何卸载由外部进程加载的dll或任何其他类型的模块吗?

我尝试GetModuleHandle然后FreeLibrary没有结果......

感谢您的所有回复

感谢您的回复。我在这里找到了一篇有趣的msdn文章:

http://blogs.msdn.com/b/jmstall/archive/2006/09/28/managed-create-remote-thread.aspx

问题在于,当我尝试执行OpenProcess时,外部进程崩溃。

从中卸载模块的最低进程访问权限是什么?

以下是我在c#中尝试做的事情: [码] protected const int PROCESS_ALL_ACCESS =(STANDARD_RIGHTS_REQUIRED | SYNCHRONIZE | 0xFFF); protected const int STANDARD_RIGHTS_REQUIRED = 0xF0000; protected const int SYNCHRONIZE = 0x100000;

    public static bool UnloadRemoteModule(FileEntry le)
    {
        try
        {
            Process process = System.Diagnostics.Process.GetProcessById(le.ProcessID);

            if (process == null) return false;
            StringBuilder sb = new StringBuilder(le.File);

            UnloadModuleThreadProc umproc = new UnloadModuleThreadProc(UnloadModule);
            IntPtr fpProc = Marshal.GetFunctionPointerForDelegate(umproc);               

            SafeProcessHandle processHandle = null;

            IntPtr currentProcess = NativeMethods.GetCurrentProcess();
            int processId = le.ProcessID;
            bool remote = (processId != NativeMethods.GetProcessId(currentProcess));

            try
            {
                if (remote)
                {

                    MessageBox.Show("OPENING PROCESS !");
                    processHandle = NativeMethods.OpenProcess(PROCESS_ALL_ACCESS, true, processId);
                    System.Threading.Thread.Sleep(200);
                    uint dwThreadId;

                    if (processHandle.DangerousGetHandle() == IntPtr.Zero)
                    {
                        MessageBox.Show("COULD NOT OPEN HANDLE !");

                    }
                    else
                    {
                        // Create a thread in the first process.
                        IntPtr hThread = CreateRemoteThread(
                            processHandle.DangerousGetHandle(),
                            IntPtr.Zero,
                            0,
                            fpProc, IntPtr.Zero,
                            0,
                            out dwThreadId);

                        System.Threading.Thread.Sleep(200);

                        WaitForThreadToExit(hThread);
                    }

                }
                return true;
            }
            finally
            {
                if (remote)
                {                        
                    if (processHandle != null)
                    {
                        processHandle.Close();
                    }                       
                }
            }

            return false;
        }
        catch (Exception ex)
        {
            //Module.ShowError(ex);
            return false;
        }
    }

    public delegate int UnloadModuleThreadProc(IntPtr sb_module_name);

    static int UnloadModule(IntPtr sb_module_name2)
    {
        using (StreamWriter sw = new StreamWriter(@"c:\a\logerr.txt"))
        {
            sw.AutoFlush = true;
            sw.WriteLine("In Unload Module");

            StringBuilder sb_module_name =new StringBuilder(@"C:\Windows\System32\MyDll.dll");

            IntPtr mh = DetectOpenFiles.GetModuleHandle(sb_module_name.ToString());

            sw.WriteLine("LAST ERROR="+Marshal.GetLastWin32Error().ToString());

            sw.WriteLine("POINTER="+mh.ToInt32());

            if (mh != IntPtr.Zero)
            {
                return (FreeLibrary(mh) ? 1 : 0);
            }

            sw.WriteLine("LAST ERROR 2 =" + Marshal.GetLastWin32Error().ToString());
            sw.WriteLine("EXIT " + mh.ToInt32());
        }

        return 0;
    }[/code]

2 个答案:

答案 0 :(得分:8)

你可以做到,但说实话,我必须问为什么?你很可能会把事情搞得一团糟。说真的,如果你这样做,没有什么是正确的。不要阅读这篇文章的其余部分,关闭浏览器,做一些冥想,弄清楚你做错了什么让你提出这个问题。

这里是DRAGONS

那就是说,它可以做到,而且也很容易。

您所要做的就是使用CreateRemoteThread,将句柄传递给您要强制卸载的进程,以及指向调用GetModuleHandleFreeLibrary的函数的函数指针。很容易就是馅饼。

示例代码(未经测试,用vi编写,不管用什么都不用):

DWORD WINAPI UnloadNamedModule(void *)
{
    //If you value your life, don't use this code
    LPCTSTR moduleName = _T("MYMODULE.DLL");
    HMODULE module = GetModuleHandle(moduleName);

    if (module != NULL)
    {
        UnloadModule(hModule);
        //All hell breaks loose. Not even this comment will be reached.
        //On your own head be it. Don't say I didn't warn you.
    }
}

//Warning: this function should never be run!
void UnloadRemoteModule(HANDLE hProcess)
{
    CreateRemoteThread(hProcess, NULL, 0, UnloadNamedModule, NULL, 0);
}

答案 1 :(得分:1)

您无法强制外部进程卸载其模块。您需要从外部进程内部运行该代码。您可以期望的最好方法是终止拥有外部DLL的进程。如果你可以从外部进程卸载一个dll,那将非常危险,代码可能会在你从RAM中拉出来时运行。

如果您要更换DLL,您可以做的最好是重命名DLL并保存新DLL。这样,DLL将在下次外部进程加载时使用。

上面的斜体修正:你可以这样做,但如果你这样做,你会遇到大麻烦。我仍然认为最好的方法是执行上面列出的操作,重命名DLL并在下次外部进程启动时将新的DLL放在其中。如果您想要替换DLL,这是一种更安全的方法。