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

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

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

            return(methodWrapper.CreateRemoteThread());
        }