写个好玩的JIT demo,仅限Intel x86+ windows+msvc

Posted racaljk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了写个好玩的JIT demo,仅限Intel x86+ windows+msvc相关的知识,希望对你有一定的参考价值。

#include <Windows.h>
#include <cstdint>
#include <cstring>
#define BACK_FILL (0)

int main() {
    char* native = (char*)VirtualAlloc(NULL, 1024, MEM_COMMIT | MEM_RESERVE,
                                       PAGE_EXECUTE_READWRITE);
    char code[] = {0x68, 0x65, 0x6c, 0x6c,      0x6f,      0x20,      0x77,
                   0x6f, 0x72, 0x6c, 0x64,      0x00,      0xff,      0xf5,
                   0x89, 0xe5, 0x68, BACK_FILL, BACK_FILL, BACK_FILL, BACK_FILL,
                   0xff, 0x95, 0x08, 0x00,      0x00,      0x00,      0x81,
                   0xc4, 0x04, 0x00, 0x00,      0x00,      0x8f,      0xc5,
                   0xc3, 0x00};
    memcpy(native, code, sizeof(code) / sizeof(char));
    *(int32_t*)(native + 17) = (int32_t)native;
    ((void (*)(int (*)(const char*, ...)))(native + 12))(&printf);
    VirtualFree(native, 0, MEM_RELEASE);
    getchar();
    return 0;
}

have fun~

以上是关于写个好玩的JIT demo,仅限Intel x86+ windows+msvc的主要内容,如果未能解决你的问题,请参考以下文章

Android 逆向x86 汇编 ( 参考资料 | Intel 官方的文档 | x86 汇编中文文档 | 汇编指令查询器 )

Android 逆向x86 汇编 ( 参考资料 | Intel 官方的文档 | x86 汇编中文文档 | 汇编指令查询器 )

Intel X86 CPU寻址方式

Google API vs Google Play vs Intel x86 vs Android TV vs Wear OS Intel x86 系统映像差异

组装 - 堆对齐 - x86 intel

Intel x86的架构模式