日常

Author Avatar
Aryb1n 4月 11, 2017
  1. 看了一篇pwn入门

  2. 安装了传说中的socat

  3. 调试了很简单的文件

    gdb ./format1
    b printf
    r
    

    结果出现了:

    printf.c: 没有那个文件或目录
    

    搜了半天发现要

    apt-get source libc6-dev
    

    根据提示看,貌似应该用(不管他了)

    git clone https://anonscm.debian.org/git/pkg-glibc/glibc.git
    

    这个时候get了glibc源码(不知道是不是)
    然后

    find ~/glibc-2.23 -name printf.c
    
    ./stdio-common/printf.c
    

    这个时候重新进入gdb

    gdb ./format1
    directory ~/glibc-2.23/stdio-common/
    b printf
    r
    

    就好了

  4. mark了还没看的