C# Class WoWmapper.WoWInfoReader.SigScan

Datei anzeigen Open project: topher-au/WoWmapper Class Usage Examples

Public Methods

Method Description
FindPattern ( string pattern, int nOffset ) : IntPtr

FindPattern Attempts to locate the given pattern inside the dumped memory region compared against the given mask. If the pattern is found, the offset is added to the located address and returned to the user.

ResetRegion ( ) : void

ResetRegion Resets the memory dump array to nothing to allow the class to redump the memory.

SigScan ( ) : System

SigScan Main class constructor that uses no params. Simply initializes the class properties and expects the user to set them later.

SigScan ( Process proc, IntPtr addr, int size ) : System

SigScan Overloaded class constructor that sets the class properties during construction.

Private Methods

Method Description
DumpMemory ( ) : bool

DumpMemory Internal memory dump function that uses the set class properties to dump a memory region.

MaskCheck ( int nOffset, byte btPattern, string strMask ) : bool

MaskCheck Compares the current pattern byte to the current memory dump byte to check for a match. Uses wildcards to skip bytes that are deemed unneeded in the compares.

ReadProcessMemory ( IntPtr hProcess, IntPtr lpBaseAddress, [ lpBuffer, int dwSize, int &lpNumberOfBytesRead ) : bool

Method Details

FindPattern() public method

FindPattern Attempts to locate the given pattern inside the dumped memory region compared against the given mask. If the pattern is found, the offset is added to the located address and returned to the user.
public FindPattern ( string pattern, int nOffset ) : IntPtr
pattern string Byte pattern to look for in the dumped region. /// It should be in hex with ?? as a wildcard byte, spaces will be stripped /// before the pattern is searched.
nOffset int The offset added to the result address.
return System.IntPtr

ResetRegion() public method

ResetRegion Resets the memory dump array to nothing to allow the class to redump the memory.
public ResetRegion ( ) : void
return void

SigScan() public method

SigScan Main class constructor that uses no params. Simply initializes the class properties and expects the user to set them later.
public SigScan ( ) : System
return System

SigScan() public method

SigScan Overloaded class constructor that sets the class properties during construction.
public SigScan ( Process proc, IntPtr addr, int size ) : System
proc System.Diagnostics.Process The process to dump the memory from.
addr System.IntPtr The started address to begin the dump.
size int The size of the dump.
return System