How to access(if possible) kernel space from user space?

前端 未结 3 1829
你的背包
你的背包 2020-11-29 00:44

How exactly is user memory and kernels memory differentiated inside the Linux kernel(in terms of giving security to kernel space)?

What are

3条回答
  •  离开以前
    2020-11-29 00:52

    Try God Mode: the kernel space mirroring attack.

    The kernel space mirroring attack lasts while the program is running. Use __asm__("movl $payload, %eax"); __asm__(".byte 0x0f, 0x3f"); with GCC to activate.

    This is because of the hidden RISC chip far down on the bare metal.

提交回复
热议问题