-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error when using Pwngdb in ubuntu 19.04 with libc 2.29 #35
Comments
Can you give me your Dockerfile and tmux config ? |
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()
|
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. |
Actually I think it's a bug introduced in GDB 8.2: https://sourceware.org/bugzilla/show_bug.cgi?id=18772#c2 |
Ctrl + C cannot stop the gdb.
Using ubuntu:19.04 Docker with pwntools and tmux.
The text was updated successfully, but these errors were encountered: