缓冲区溢出不会运行

时间:2013-01-07 22:32:21

标签: linux gcc gdb buffer-overflow

我尝试了一个基本的缓冲区溢出,我在堆栈上覆盖保存的EIP跳转到地址。这个地址指向包含我的shellcode的àhell变量。

但是在gdb上,在nopslide的第一个nop上编程sigserv。

我喜欢这个命令的程序:

gdb-peda$ r $(python -c 'print "A"*22 + "\x5f\xb8\xff\xff"')

我有这个痕迹:

[----------------------------------registers-----------------------------------]
EAX: 0x1a 
EBX: 0xf7fc3ff4 --> 0x15dd7c 
ECX: 0xffffaf38 --> 0xf7fc44e0 --> 0xfbad2a84 
EDX: 0xf7fc5360 --> 0x0 
ESI: 0x0 
EDI: 0x0 
EBP: 0x41414141 ('AAAA')
ESP: 0xffffaf80 --> 0xffffb100 --> 0xc ('\x0c')
EIP: 0xffffb85f --> 0x90909090
EFLAGS: 0x10296 (carry PARITY ADJUST zero SIGN trap INTERRUPT direction overflow)
[-------------------------------------code-------------------------------------]
   0xffffb85c:  nop
   0xffffb85d:  nop
   0xffffb85e:  nop
=> 0xffffb85f:  nop
   0xffffb860:  nop
   0xffffb861:  nop
   0xffffb862:  nop
   0xffffb863:  nop
[------------------------------------stack-------------------------------------]
0000| 0xffffaf80 --> 0xffffb100 --> 0xc ('\x0c')
0004| 0xffffaf84 --> 0xf7fef060 (push   ebp)
0008| 0xffffaf88 --> 0x80484bb (<__libc_csu_init+11>:   add    ebx,0x1219)
0012| 0xffffaf8c --> 0xf7fc3ff4 --> 0x15dd7c 
0016| 0xffffaf90 --> 0x80484b0 (<__libc_csu_init>:  push   ebp)
0020| 0xffffaf94 --> 0x0 
0024| 0xffffaf98 --> 0xffffb018 --> 0x0 
0028| 0xffffaf9c --> 0xf7e7ce46 (<__libc_start_main+230>:   mov    DWORD PTR [esp],eax)
[------------------------------------------------------------------------------]
Legend: code, data, rodata, value
Stopped reason: SIGSEGV
0xffffb85f in ?? ()
gdb-peda$ x/i $eip
=> 0xffffb85f:  nop

我在debian wheezy上运行,gcc版本是gcc(Debian 4.7.2-4)4.7.2,gdb版本7.4.1-debian。

这个gcc版本有新的保护吗?还是其他想一想?

谢谢你。 (对不起我的英文:))

1 个答案:

答案 0 :(得分:1)

您可以按照以下任何步骤删除堆栈保护:

Illustration of buffer overflows for students (linux, C)