Pwngdb icon indicating copy to clipboard operation
Pwngdb copied to clipboard

Error when using Pwngdb in ubuntu 19.04 with libc 2.29

Open sunichi opened this issue 6 years ago • 5 comments

Ctrl + C cannot stop the gdb. Using ubuntu:19.04 Docker with pwntools and tmux.

sunichi avatar May 11 '19 13:05 sunichi

Can you give me your Dockerfile and tmux config ? I can not reproduce the problem :(

scwuaptx avatar May 14 '19 07:05 scwuaptx

It's my fault that I forget to say that I run/use gdb in pwntools. All config is default. Pwngdb work perfectly with pwntools in Docker under ubuntu:16.04 and ubuntu:18.04. Here is my dockerfile, exp.py and some operations/outputs in gdb.

From ubuntu:19.04
RUN sed -i "s/http:\/\/archive.ubuntu.com/http:\/\/mirrors.tuna.tsinghua.edu.cn/g" /etc/apt/sources.list 
RUN apt update && apt-get -y dist-upgrade
RUN apt install -y tmux gcc g++ cmake gdb git vim
RUN git clone https://github.com/longld/peda /root/peda
RUN git clone https://github.com/scwuaptx/Pwngdb /root/Pwngdb
RUN cp /root/Pwngdb/.gdbinit /root/
RUN apt-get install -y python2.7 python-pip python-dev git libssl-dev libffi-dev build-essential
RUN pip install --upgrade pip
RUN pip install --upgrade pwntools
from pwn import *
p = process('bin_path')

context.terminal = ['tmux', 'split', '-h']

gdb.attach(p)

p.interactive()
p.close()
gdb-peda$ c
Continuing.
^C^C^C^C # when I send Ctrl + c to gdb, I cannot stop it.
Program terminated with signal SIGKILL, Killed. # here I terminated the executable in another screen.
The program no longer exists.
Warning: Got Ctrl+C / SIGINT!
Error while running hook_stop:
Quit
gdb-peda$

sunichi avatar May 14 '19 11:05 sunichi

Did you confirm that there's no bug when you disable Pwngdb?

david942j avatar May 14 '19 12:05 david942j

Did you confirm that there's no bug when you disable Pwngdb?

You're right. I forget peda. After testing I find that it's peda's fault.

sunichi avatar May 14 '19 13:05 sunichi

Actually I think it's a bug introduced in GDB 8.2: https://sourceware.org/bugzilla/show_bug.cgi?id=18772#c2

david942j avatar May 14 '19 16:05 david942j