C# Класс AgaHackTools.Memory.Module

Наследование: Pointer, IProcessModule
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

Find() публичный Метод

Performs a pattern scan.
public Find ( Pattern pattern ) : ScanResult
pattern AgaHackTools.Main.Default.Pattern The Instance containing the data to use.
Результат ScanResult

Find() публичный Метод

Preformpattern scan from byte[]
public Find ( byte pattern ) : ScanResult
pattern byte
Результат ScanResult

Find() публичный Метод

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.
Результат ScanResult

Find() публичный Метод

Performs a pattern scan.
public Find ( string patternText ) : ScanResult
patternText string /// The dword formatted text of the pattern. /// A2 5B ?? ?? ?? A2 ///
Результат ScanResult

FindFunction() публичный Метод

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).
Результат IProcessFunction

Module() публичный Метод

public Module ( SafeMemoryHandle handle, ProcessModule module, bool internalMem ) : System
handle AgaHackTools.Main.Memory.SafeMemoryHandle
module System.Diagnostics.ProcessModule
internalMem bool
Результат System

this() публичный Метод

Gets the specified function in the remote module.
public this ( string functionName ) : IProcessFunction
functionName string The name of the function.
Результат IProcessFunction