搜索资源列表

  1. 如何调用dll中的函数

    0下载:
  2. 示范如何使用 LoadLibrary(...) 和 GetProcAddress(....)调用dll的输出函数.-the code show how to call the functions in the dll file by LoadLibrary and GetProcAddress.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:46632
    • 提供者:杨杰
  1. 缓冲区溢出攻防

    0下载:
  2. 本代码演示了缓冲区溢出的攻击与防范。我的开发环境 操作系统:windows xp professional + sp1a 编译器:visual c++.net 2003 由于操作系统的补丁太多,即使与我相同的系统也可能需要修改LoadLibrary、GetProcAddress、VirtualAlloc和\"jmp esp\"指令的地址。 请谨慎修改编译参数,修改参数可能导致修改程序。 请只编译relea
  3. 所属分类:弱点检测代码

    • 发布日期:2008-10-13
    • 文件大小:14323
    • 提供者:gogo
  1. mirager_1

    0下载:
  2. 它是利用调试技术编写成的API钩子。比起16位下传统的入口代码改写技术,它是没有多线程问题的,而且能够拦截LoadLibrary/GetProcAddress完成的API显式调用。当然,如果您告诉它一些类型信息,Mirager可以在拦截到调用时获取上下文,即参数和返回值-it is the use of technologies developed into debugging API hook. Compared to the tra
  3. 所属分类:钩子与API截获

    • 发布日期:2024-05-12
    • 文件大小:401408
    • 提供者:唐财爷
  1. 如何调用dll中的函数

    0下载:
  2. 示范如何使用 LoadLibrary(...) 和 GetProcAddress(....)调用dll的输出函数.-the code show how to call the functions in the dll file by LoadLibrary and GetProcAddress.
  3. 所属分类:Windows编程

    • 发布日期:2024-05-12
    • 文件大小:46080
    • 提供者:
  1. vc++ finish

    0下载:
  2. 该程序创建了一个动态连接库并在应用程序中调用了此动态链接库。在动态链接库文件中利用“declspec(dllexport)”关键字添加输出函数的声明。在调用动态链接库应用程序中通过getprocaddress函数或的动态链接库中输出函数的地址,并调用该输出函数。-the program to create a dynamic link library and the application program called this dyn
  3. 所属分类:Windows编程

    • 发布日期:2024-05-12
    • 文件大小:61440
    • 提供者:邢馨华
  1. GetProcAddress_lmz

    0下载:
  2. 自己实现GetProcAddress()函数 :) -achieving his GetProcAddress () function :)
  3. 所属分类:Windows编程

    • 发布日期:2024-05-12
    • 文件大小:17408
    • 提供者:xyxb
  1. VC++Hook

    1下载:
  2. 用VC++ Hook技术实现屏幕取词.它是利用调试技术编写成的API钩子。比起16位下传统的入口代码改写技术,它是没有多线程问题的,而且能够拦截LoadLibrary/GetProcAddress完成的API显式调用。-VC Hook Capture Characters from Screen Technology. It is testing the use of technology into the preparation of
  3. 所属分类:钩子与API截获

    • 发布日期:2024-05-12
    • 文件大小:371712
    • 提供者:tanglongsh
  1. OcxAutoRegisterNew

    1下载:
  2. VC源码自动注册OCX控件 BOOL bResult = FALSE //检查是否支持注册 if (SupportsSelfRegister(strOcxPath)) { HMODULE hModule = ::LoadLibrary(strOcxPath) if (LOADLIBRARY_FAILED(hModule)) return FALSE //获得注册函数地址
  3. 所属分类:界面编程

    • 发布日期:2024-05-12
    • 文件大小:35840
    • 提供者:chengde
  1. 200741516355583

    0下载:
  2. Mirager是利用调试技术编写成的API钩子。比起16位下传统的入口代码改写技术,它是没有多线程问题的,而且能够拦截LoadLibrary/GetProcAddress完成的API显式调用。当然,如果您告诉它一些类型信息,Mirager可以在拦截到调用时获取上下文,即参数和返回值。-Mirager is to use technology to prepare debugging hooks into the API. Compare
  3. 所属分类:Windows编程

    • 发布日期:2024-05-12
    • 文件大小:374784
    • 提供者:杨秉岐
  1. window_Cwnd

    0下载:
  2. 实现窗口透明 只需在创建窗口函数中加入 SetWindowLong(this->GetSafeHwnd(),GWL_EXSTYLE, GetWindowLong(this->GetSafeHwnd(),GWL_EXSTYLE)^0x80000) HINSTANCE hInst = LoadLibrary("User32.DLL") if(hInst) { typedef BO
  3. 所属分类:对话框与窗口

    • 发布日期:2024-05-12
    • 文件大小:1561600
    • 提供者:zhangwei
  1. huishouzhan

    0下载:
  2. 程序运行初期,程序首先会通过LoadLibrary函数加载动态链接库Shell32.dll,并且把加载后的操作句柄存储在LibHandle中。然后通过@SHEmptyRecycleBin:=GetProcAddress (LibHandle, SHEmptyRecycleBinA )语句读取SHEmptyRecycleBinA函数的地址,如果以上语句能够正确执行(也就是@SHEmptyRecycleBin不等于nil),那么就调用SHE
  3. 所属分类:Windows编程

    • 发布日期:2024-05-12
    • 文件大小:1024
    • 提供者:faetas
  1. Injector

    0下载:
  2. BOOL InjectDLL(DWORD ProcessID) { HANDLE Proc char buf[50]={0} LPVOID RemoteString, LoadLibAddy if(!ProcessID) return false Proc = OpenProcess(CREATE_THREAD_ACCESS, FALSE, ProcessID)
  3. 所属分类:系统编程

    • 发布日期:2024-05-12
    • 文件大小:26624
    • 提供者:artofsexy
  1. Bluetooth

    0下载:
  2. pBthNsLookupServiceBegin = (BTHNSLOOKUPSERVICEBEGIN)GetProcAddress(m_DLL, _T("BthNsLookupServiceBegin")) pBthNsLookupServiceNext = (BTHNSLOOKUPSERVICENEXT )GetProcAddress(m_DLL, _T("BthNsLookupServiceNext")) pBt
  3. 所属分类:Windows编程

    • 发布日期:2024-05-12
    • 文件大小:4656128
    • 提供者:ybb_pub
  1. over

    0下载:
  2. 我的开发环境 操作系统:windows xp professional + sp1a 编译器:visual c++.net 2003 由于操作系统的补丁太多,即使与我相同的系统也可能需要修改LoadLibrary、GetProcAddress、VirtualAlloc和"jmp esp"指令的地址。 请谨慎修改编译参数,修改参数可能导致修改程序。 请只编译release版,debug版无法正常执行。-My
  3. 所属分类:其他小程序

    • 发布日期:2024-05-12
    • 文件大小:48128
    • 提供者:jackson
  1. GetProcAddress

    0下载:
  2. GetProcAddress Api Replacement Using Inline ASM
  3. 所属分类:Dephi控件源码

    • 发布日期:2024-05-12
    • 文件大小:1024
    • 提供者:osman kemal
  1. Realization-of-GetProcAddress

    0下载:
  2. 通过对PE的学习,实现了系统函数GetProcAddress()的功能,感兴趣的朋友可以下载来看看。有一定的借鉴价值。-Through the study of PE to achieve the system function GetProcAddress () function, and interested friends can download to see. A certain reference value.
  3. 所属分类:系统编程

    • 发布日期:2024-05-12
    • 文件大小:9216
    • 提供者:majikang
  1. GetProcAddress

    0下载:
  2. 获得Windows XP 内部版本号,vc++ MFC程序,通用分析PE格式,自己实现的GetProcAddress ,写壳会用到的东西-Windows XP build number vc++ MFC program, general analysis PE format, to achieve their own GetProcAddress write what shell will be used
  3. 所属分类:系统编程

    • 发布日期:2024-05-12
    • 文件大小:24576
    • 提供者:黄振荣
  1. Realization-of-GetProcAddress

    0下载:
  2. 通过对PE的学习,实现了系统函数GetProcAddress()的功能,感兴趣的朋友可以下载来看看。有一定的借鉴价值。-Through the study of PE to achieve the system function GetProcAddress () function, and interested friends can download to see. A certain reference value.
  3. 所属分类:数据库编程

    • 发布日期:2024-05-12
    • 文件大小:9216
    • 提供者:vvmsm269keb
  1. Realization-of-GetProcAddress

    0下载:
  2. 通过对PE的学习,实现了系统函数GetProcAddress()的功能,感兴趣的朋友可以下载来看看。有一定的借鉴价值。-Through the study of PE to achieve the system function GetProcAddress () function, and interested friends can download to see. A certain reference value.
  3. 所属分类:数据库编程

    • 发布日期:2024-05-12
    • 文件大小:9216
    • 提供者:q4yxyyongyu
  1. GetProcAddress

    0下载:
  2. Kernel getprocaddress
  3. 所属分类:系统编程

    • 发布日期:2022-01-02
    • 文件大小:5018
    • 提供者:malpwn
« 12 3 »

源码中国 www.ymcn.org