它鑄造buf
到功能並運行它,如果它是一個返回void
和不帶參數的函數。基本上運行shellcode。
從文章中的源代碼:的code
#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)();
}
它複製內容到buf
,鋪設出順序。前幾行設置了函數序言(設置堆棧等)。它看起來像在機器上,buf
中列出的代碼是相同的,如果它實際上是一個函數。當被鑄造時,編譯器允許你實際上調用函數從buf
開始。相當了不起,不是嗎?但它在概念上很簡單。
它將buf轉換爲函數指針並調用結果函數。 – wildplasser 2013-02-28 00:41:23