C# Class AgaHackTools.Memory.Module

Inheritance: Pointer, IProcessModule
Mostra file Open project: aganonki/HackTools Class Usage Examples

Public Methods

Method Description
Find ( Pattern pattern ) : ScanResult

Performs a pattern scan.

Find ( byte pattern ) : ScanResult

Preformpattern scan from byte[]

Find ( byte myPattern, string mask ) : ScanResult

Performs a pattern scan.

Find ( string patternText ) : ScanResult

Performs a pattern scan.

FindFunction ( string functionName ) : IProcessFunction

Finds the specified function in the remote module.

Interesting article on how DLL loading works: http://msdn.microsoft.com/en-us/magazine/bb985014.aspx

Module ( SafeMemoryHandle handle, ProcessModule module, bool internalMem ) : System
this ( string functionName ) : IProcessFunction

Gets the specified function in the remote module.

Method Details

Find() public method

Performs a pattern scan.
public Find ( Pattern pattern ) : ScanResult
pattern AgaHackTools.Main.Default.Pattern The Instance containing the data to use.
return ScanResult

Find() public method

Preformpattern scan from byte[]
public Find ( byte pattern ) : ScanResult
pattern byte
return ScanResult

Find() public method

Performs a pattern scan.
public Find ( byte myPattern, string mask ) : ScanResult
myPattern byte The patterns bytes.
mask string The mask of the pattern. ? Is for wild card, x otherwise.
return ScanResult

Find() public method

Performs a pattern scan.
public Find ( string patternText ) : ScanResult
patternText string /// The dword formatted text of the pattern. /// A2 5B ?? ?? ?? A2 ///
return ScanResult

FindFunction() public method

Finds the specified function in the remote module.
Interesting article on how DLL loading works: http://msdn.microsoft.com/en-us/magazine/bb985014.aspx
public FindFunction ( string functionName ) : IProcessFunction
functionName string The name of the function (case sensitive).
return IProcessFunction

Module() public method

public Module ( SafeMemoryHandle handle, ProcessModule module, bool internalMem ) : System
handle AgaHackTools.Main.Memory.SafeMemoryHandle
module System.Diagnostics.ProcessModule
internalMem bool
return System

this() public method

Gets the specified function in the remote module.
public this ( string functionName ) : IProcessFunction
functionName string The name of the function.
return IProcessFunction