大家好,
我正在尝试学习基本的 shellcoding,并且遇到了一些奇怪的事情,希望有人可以向我解释。我以两种方式编译了以下代码:将 shellcode 声明为数组和 char*。当我将 shellcode 声明为数组时,linux 检测到我正在尝试执行数据,并且在第一条指令上出现段错误。但是,当我将 shellcode 声明为 char* 时,所有的 shellcode 都会执行并且我得到一个“Hello world!”。编译器如何以不同的方式处理这两个声明,为什么一个以存在于不受保护的内存中的 shellcode 结尾?提前致谢。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/* This declaration ends in a segfault */
//char shellcode[] =
/* This declaration ends in successful execution */
char* shellcode =
/* Shellcode prints "Hello world!" and exits */
"\xeb\x1f\x48\x31\xc0\x48\x31\xdb\x48\x31\xc9\x48\x31\xd2\xb0\x04\xb3\x01\x59\xb2\x0c\xcd\x80\x48\x31\xc0\xb0\x01\x48\x31\xdb\xcd\x80\xe8\xdc\xff\xff\xff\x48\x65\x6c\x6c\x6f\x20\x57\x6f\x72\x6c\x64\x21";
int main()
{
void (*f)();
f = (void (*)())shellcode;
(void)(*f)();
}