它正在转换buf
为一个函数并运行它,就好像它是一个返回void
且不带参数的函数一样。本质上是运行shellcode。
从文章中的源代码:
#include <stdlib.h>
#include <stdio.h>
const char code[] =
"\x31\xc0" /* Line 1: xorl %eax,%eax */
"\x50" /* Line 2: pushl %eax */
"\x68""//sh" /* Line 3: pushl $0x68732f2f */
"\x68""/bin" /* Line 4: pushl $0x6e69622f */
"\x89\xe3" /* Line 5: movl %esp,%ebx */
"\x50" /* Line 6: pushl %eax */
"\x53" /* Line 7: pushl %ebx */
"\x89\xe1" /* Line 8: movl %esp,%ecx */
"\x99" /* Line 9: cdql */
"\xb0\x0b" /* Line 10: movb $0x0b,%al */
"\xcd\x80" /* Line 11: int $0x80 */
;
int main(int argc, char **argv)
{
char buf[sizeof(code)];
strcpy(buf, code);
((void(*)( ))buf)( );
}
它复制code
into的内容buf
,按顺序排列。前几行设置了函数序言(设置堆栈等)。在机器看来,其中的代码buf
与它实际上是一个函数看起来是一样的。强制转换时,编译器允许您实际调用从buf
. 很神奇不是吗?但它在概念上很简单。