我在下面写了一个小shellcode:
#include <stdlib.h>
int main()
{
__asm__("jmp calloffset\n"
"poploffset: popl %%esi\n"
"movl $1,%%eax\n"
"movl $6,%%ebx\n"
"int $0x80\n"
"calloffset: call poploffset\n"
".string \"/bin/bash\"\n":::"esi");
exit(1);
}
当shellcode运行时,它会返回6。实际上,上面的代码运行良好,main函数确实返回6。
然后我将代码嵌入到 C 程序中:
#include <stdlib.h>
#include <unistd.h>
char shellcode[]="\xeb\x0d\x5e\xb8\x01\x00\x00\x00\xbb\x06\x00\x00\x00\xcd\x80\xe8\xee\xff\xff\xff";
void func()
{
int * ret;
ret=(int *)&ret+0x08;
*ret=(int *)shellcode;
}
int main()
{
func();
exit(0);
}
在正常情况下,代码应该返回 6。但它总是返回 0。
我不认为我的代码是错误的。我会告诉你的。
首先,我从 gdb 中得到 val ret 的地址:
(gdb) print &ret
$1 = (int **) 0xbffff2f4
我得到了 main 中下一条 call 指令的地址:
(gdb) disass main
Dump of assembler code for function main:
0x08048ccb <+0>: push %ebp
0x08048ccc <+1>: mov %esp,%ebp
0x08048cce <+3>: and $0xfffffff0,%esp
0x08048cd1 <+6>: sub $0x10,%esp
0x08048cd4 <+9>: call 0x8048cb0 <func>
0x08048cd9 <+14>: movl $0x0,(%esp)
0x08048ce0 <+21>: call 0x80495c0 <exit>
End of assembler dump.
显然,它是 0x08048cd9。
然后,我得到将上面的地址存储在堆栈中的地址:
(gdb) x/16xw $esp
0xbffff2e8: 0xbffff3bc 0x00000001 0x00000000 0x08049460
0xbffff2f8: 0xbffff318 0x08048cd9 0x0804972f 0x080d6044
0xbffff308: 0x08049797 0x00000000 0x08049460 0x080493c0
0xbffff318: 0x00000000 0x08048e91 0x00000001 0xbffff3b4
显然,地址是0xbffff2f8+0x04=0xbffff2fc。val ret 的地址是 0xbffff2f4。
所以,ret=(int *)&ret+0x08
应该得到正确的地址。并且*ret=(int *)shellcode
应该将shellcode的地址插入堆栈。然后程序运行到shellcode,最后程序返回时我得到6。
我错了吗?
我好像找错地方了:
(gdb) disass func
Dump of assembler code for function func:
0x08048cb0 <+0>: push %ebp
0x08048cb1 <+1>: mov %esp,%ebp
0x08048cb3 <+3>: sub $0x28,%esp
0x08048cb6 <+6>: lea -0xc(%ebp),%eax
0x08048cb9 <+9>: add $0x20,%eax
0x08048cbc <+12>: mov %eax,-0xc(%ebp)
0x08048cbf <+15>: mov -0xc(%ebp),%eax
0x08048cc2 <+18>: mov $0x80d6028,%edx
0x08048cc7 <+23>: mov %edx,(%eax)
0x08048cc9 <+25>: movl $0x1,(%esp)
0x08048cd0 <+32>: call 0x8053380 <sleep>
0x08048cd5 <+37>: leave
0x08048cd6 <+38>: ret
End of assembler dump.
指令add $0x20,%eax
很奇怪。这怎么可能发生?