//
//
//
//
//
//
//
//
//
//
软件Tags:
易语言检测断点模块源码
系统结构:检测断点,取断点函数,CreateFile,IsDebuggerPresent,GetModuleHandle,GetProcAddress,LoadLibrary,CreateThread,CloseHandle,
======程序集1
| |
| |------ _启动子程序
| |
| |------ _临时子程序
| |
| |
======检测断点
| |
| |------ 检测断点
| |
| |------ 取断点函数
| |
| |
======调用的Dll
| |
| |---[dll]------ CreateFile
| |
| |---[dll]------ IsDebuggerPresent
| |
| |---[dll]------ GetModuleHandle
| |
| |---[dll]------ GetProcAddress
| |
| |---[dll]------ LoadLibrary
| |
| |---[dll]------ CreateThread
| |
| |---[dll]------ CloseHandle
调用的DLL命令:
.DLL命令 CreateFile, 整数型, , "CreateFileA"
.参数 lpFileName, 文本型
.参数 dwDesiredAccess, 整数型
.参数 dwShareMode, 整数型
.参数 lpSecurityAttributes, 整数型
.参数 dwCreationDisposition, 整数型
.参数 dwFlagsAndAttributes, 整数型
.参数 hTemplateFile, 整数型
.DLL命令 IsDebuggerPresent, 整数型
.DLL命令 GetModuleHandle, 整数型, , "GetModuleHandleA"
.参数 lpModuleName, 文本型
.DLL命令 GetProcAddress, 整数型
.参数 hModule, 整数型
.参数 lpProcName, 文本型
.DLL命令 LoadLibrary, 整数型, , "LoadLibraryA"
.参数 lpLibFileName, 文本型
.DLL命令 CreateThread, 整数型
.参数 lpThreadAttributes, 整数型
.参数 dwStackSize, 整数型
.参数 lpStartAddress, 子程序指针
.参数 lpParameter, 整数型
.参数 dwCreationFlags, 整数型
.参数 lpThreadId, 整数型, 传址
.DLL命令 CloseHandle, 整数型
.参数 hObject, 整数型
