-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
34 lines (29 loc) · 706 Bytes
/
Dockerfile
File metadata and controls
34 lines (29 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
FROM ubuntu:20.04
ENV PATH $PATH:/bin
RUN apt-get update && apt-get install -y tzdata
ENV TZ=Asia/Tokyo
RUN apt-get install -y \
binutils \
bsdmainutils \
cmake \
clang \
build-essential \
libssl-dev \
netcat \
python3 \
python3-pip \
gcc \
g++ \
gdb \
git \
socat \
ruby \
vim && \
git clone https://github.com/longld/peda.git ~/peda && \
echo "source ~/peda/peda.py" >> ~/.gdbinit && \
git clone https://github.com/scwuaptx/Pwngdb.git ~/Pwngdb && \
cp ~/Pwngdb/.gdbinit ~/ && \
git clone https://github.com/slimm609/checksec.sh ~/checksec.sh && \
gem install one_gadget
RUN pip3 install pwntools
WORKDIR /src