- 论坛徽章:
- 2
|
来个极简化版本:
- #include <stdio.h>
- #include <string.h>
- void handler(void* context, int n) {
- printf("%d %d\n", *(int*)context, n);
- }
- unsigned char* promote_to_executable(unsigned char* src, size_t s);
- int main(void)
- {
- unsigned char layout[] = {
- 0x8f,0x05, 0xcc,0xcc,0xcc,0xcc,
- 0x68, 0xcc,0xcc,0xcc,0xcc,
- 0xe8, 0xcc,0xcc,0xcc,0xcc,
- 0xc7,0x04,0x24, 0xcc,0xcc,0xcc,0xcc,
- 0xc3,
- };
- unsigned char* code = promote_to_executable(layout, sizeof layout);
- void (*callback)(int) = ( void (*)(int) )code;
- int i = 1212;
- void* context = &i;
- size_t offset = (size_t)handler - 5 - (size_t)&code[11];
- unsigned char* ret = &code[19];
- memcpy(&code[12], &offset, 4);
- memcpy(&code[7] , &context, 4);
- memcpy(&code[2] , &ret, 4);
- callback(326); /* == handler(context, 326); */
- /* 输出: 1212 326 */
- return 0;
- }
- #include <windows.h>
- unsigned char* promote_to_executable(unsigned char* src, size_t s)
- {
- DWORD old;
- VirtualProtect(src, s, PAGE_EXECUTE_READWRITE, &old);
- return src;
- }
复制代码 需要获得一块内容同layout的可执行内存。 方法有很多。
然后在这块内存上弄来弄去, 最后将它作为一个函数指针调用, 就ok了。
获得可执行内存的方法:
1. 关闭数据执行保护
2. 提升, VirtualProtect, mprotect
3. 分配, VirtualAlloc, mmap |
|