Ubuntu 18.04 64-bit(Glibc 2.27) 실습 환경 DockerfileFROM ubuntu:18.04ENV PATH="${PATH}:/usr/local/lib/python3.6/dist-packages/bin"ENV LC_CTYPE=C.UTF-8RUN apt updateRUN apt install -y \ gcc \ git \ python3 \ python3-pip \ ruby \ sudo \ tmux \ vim \ wget# install pwndbgWORKDIR /rootRUN git clone https://github.com/pwndbg/pwndbgWORKDIR /root/pwndbgRUN git checkout 2023.03.19R..