魔鬼作坊吧 关注:349贴子:459
  • 0回复贴,共1

用汇编来取api地址 call 信息框

只看楼主收藏回复

#include <stdio.h>
#include <Windows.h>
char * 取字符地址(char ch[]);
template<typename dst_type, typename src_type>
dst_type 取函数地址(src_type src)
{
union {
src_type s;
dst_type d;
}u;
u.s = src;
return u.d;
}
void fn()
{
void *p2;
p2 = 取函数地址<void*>(&MessageBox);
char a[] = "Hello MesssageBox";
char b[] = "Hello world";
char *pp = 取字符地址(a);
char *bb = 取字符地址(b);
__asm
{
push 0
push pp
push bb
push 0
call p2
}
}
char * 取字符地址(char ch[])
{
char *p = ch;
return p;
}
void main()
{
fn();
system("pause");
}


IP属地:江西1楼2017-10-14 21:35回复