Esempio n. 1
0
        public bool UnlinkFromPeb(string processName, byte[] dllBytes)
        {
            var extensionWrapper = new ExtensionWrapper(processName, dllBytes);

            return(extensionWrapper.UnlinkFromPeb());
        }
Esempio n. 2
0
        public bool UnlinkFromPeb(int processId, byte[] dllBytes)
        {
            var extensionWrapper = new ExtensionWrapper(processId, dllBytes);

            return(extensionWrapper.UnlinkFromPeb());
        }
Esempio n. 3
0
        public bool UnlinkFromPeb(int processId, string dllPath)
        {
            var extensionWrapper = new ExtensionWrapper(processId, dllPath);

            return(extensionWrapper.UnlinkFromPeb());
        }