Click or drag to resize

RemoteHooking Methods

The RemoteHooking type exposes the following members.

Methods
  NameDescription
Public methodStatic memberCreateAndInject(String, String, Int32, String, String, Int32, Object)
Creates a new process which is started suspended until you call WakeUpProcess from within your injected library Run() method. This allows you to hook the target BEFORE any of its usual code is executed. In situations where a target has debugging and hook preventions, you will get a chance to block those mechanisms for example...
Public methodStatic memberCreateAndInject(String, String, Int32, InjectionOptions, String, String, Int32, Object)
Creates a new process which is started suspended until you call WakeUpProcess from within your injected library Run() method. This allows you to hook the target BEFORE any of its usual code is executed. In situations where a target has debugging and hook preventions, you will get a chance to block those mechanisms for example...
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodStatic memberCode exampleExecuteAsServiceTClass
Will execute the given static method under system privileges.
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodStatic memberGetCurrentProcessId
Returns the current native system process ID.
Public methodStatic memberGetCurrentThreadId
Returns the current native system thread ID.
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodStatic memberGetProcessIdentity
Returns the WindowsIdentity of the user the target process belongs to. You need PROCESS_QUERY_INFORMATION access to the target.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodStatic memberInject(Int32, String, String, Object)
Public methodStatic memberInject(Int32, InjectionOptions, String, String, Object)
Injects the given user library into the target process. No memory leaks are left in the target, even if injection fails for unknown reasons.
Public methodStatic memberInstallDriver
Loads the given driver into the kernel and immediately marks it for deletion. The installed driver will be registered with the service control manager under the InDriverName you specify. Please note that you should use IsX64System to find out which driver to load. Even if your process is running on 32-Bit this does not mean, that the OS kernel is running on 32-Bit!
Public methodStatic memberInstallSupportDriver
Installs the EasyHook support driver. After this step you may use InstallDriver(String, String) to install your kernel mode hooking component.
Public methodStatic memberIpcConnectClientTRemoteObject
Connects to a globally reachable, managed IPC port.
Public methodStatic memberIpcCreateServerTRemoteObject(String, WellKnownObjectMode, WellKnownSidType)
Creates a globally reachable, managed IPC-Port.
Public methodStatic memberIpcCreateServerTRemoteObject(String, WellKnownObjectMode, TRemoteObject, WellKnownSidType)
Creates a globally reachable, managed IPC-Port.
Public methodStatic memberIsX64Process
Determines if the target process is 64-bit or not. This will work only if the current process has PROCESS_QUERY_INFORMATION access to the target.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodStatic memberWakeUpProcess
Top
See Also