#include <stdio.h>
#define uint unsigned int
#define AddressOfLabel(sectionname,out) __asm{mov [out],offset sectionname};
void* CreateFunction(void* start,void *end) {
uint __start=(uint)start,__end=(uint)end-1
,size,__func_runtime;
void* func_runtime=malloc(size=(((__end)-(__start)))+1);
__func_runtime=(uint)func_runtime;
memcpy((void*)(__func_runtime),start,size);
((char*)func_runtime)[size]=0xC3; //ret
return func_runtime;
}
void CallRuntimeFunction(void* address) {
__asm {
call address
}
}
main() {
void* _start,*_end;
AddressOfLabel(__start,_start);
AddressOfLabel(__end,_end);
void* func = CreateFunction(_start,_end);
CallRuntimeFunction(func); //I expected this method to print "Test"
//but this method raised exception
return 0;
__start:
printf("Test");
__end:
}
CreateFunction
- 在内存(函数范围)中获取两个点,分配,将其复制到分配的内存并返回它(void*
使用类似于函数来调用程序集)
CallRuntimeFunction
- 运行从返回的函数CreateFunction
#define AddressOfLabel(sectionname,out)
- 将标签(sectionname)的地址输出到变量(out)
当我调试这段代码并进入调用CallRuntimeFunction
并去反汇编时,我看到了很多???
之间的汇编代码而不是__start
标签__end
。
我试图在两个标签之间复制机器代码,然后运行它。但我不知道为什么我不能调用分配给malloc
.
编辑:
我更改了一些代码并完成了部分工作。运行时函数的内存分配:
void* func_runtime=VirtualAlloc(0, size=(((__end)-(__start)))+1, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
从函数范围复制:
CopyMemory((void*)(__func_runtime),start,size-1);
但是当我运行这个程序时,我可以:
mov esi,esp
push 0E4FD14h
call dword ptr ds:[0E55598h] ; <--- printf ,after that I don't know what is it
add esp,4
cmp esi,esp
call 000B9DBB ; <--- here
mov dword ptr [ebp-198h],0
lea ecx,[ebp-34h]
call 000B9C17
mov eax,dword ptr [ebp-198h]
jmp 000D01CB
ret
在here
它进入另一个功能和奇怪的东西。