예제 #1
0
 public bool CreateRemoteThread(string processName, string dllPath)
 {
     using (var methodWrapper = new MethodWrapper(processName, dllPath, RandomiseDllName, false))
     {
         return(methodWrapper.CreateRemoteThread());
     }
 }
예제 #2
0
 public bool CreateRemoteThread(int processId, byte[] dllBytes)
 {
     using (var methodWrapper = new MethodWrapper(processId, dllBytes, RandomiseDllName, false))
     {
         return(methodWrapper.CreateRemoteThread());
     }
 }
예제 #3
0
        public bool CreateRemoteThread(string processName, string dllPath)
        {
            var methodWrapper = new MethodWrapper(processName, dllPath);

            return(methodWrapper.CreateRemoteThread());
        }
예제 #4
0
        public bool CreateRemoteThread(int processId, byte[] dllBytes)
        {
            var methodWrapper = new MethodWrapper(processId, dllBytes);

            return(methodWrapper.CreateRemoteThread());
        }
예제 #5
0
        public bool CreateRemoteThread(string processName, byte[] dllBytes)
        {
            var methodWrapper = new MethodWrapper(processName, dllBytes);

            return(methodWrapper.CreateRemoteThread());
        }