缓冲区溢出及gdp调试全过程

时间:2021-07-24 06:59:55

在Linux下编写一下代码:

#include <stdio.h>
#include <string.h>

char Lbuffer[] = "01234567890123456789========ABCD";

void foo()
{
    char buff[16];
    strcpy (buff, Lbuffer);
}

int main(int argc, char * argv[])
{
    foo();    return 0;
}

编译命令:

gcc -fno-stack-protector -o h h.c


用gdb调试可执行程序h,计算缓冲区起始地址与函数foo返回地址的距离,下面介绍调试过程


缓冲区的起始地址,即变量buffer的起始地址是:0xbfffefd0

缓冲区溢出及gdp调试全过程

函数foo返回地址是:0xbfffeffc

缓冲区溢出及gdp调试全过程

因此缓冲区起始地址与函数foo返回地址的距离是:

0xbfffeffc - 0xbfffefd0 =1c =28字节

 

下面是完整的调试过程:

缓冲区溢出及gdp调试全过程

缓冲区溢出及gdp调试全过程

缓冲区溢出及gdp调试全过程