-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
411 lines (355 loc) · 10.5 KB
/
Dockerfile
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
# syntax=docker/dockerfile:1-labs
FROM ubuntu:20.04
SHELL ["/bin/bash", "-ceov", "pipefail"]
ENV DEBIAN_FRONTEND=noninteractive
ENV LC_CTYPE=C.UTF-8
RUN <<EOF
rm -f /etc/apt/apt.conf.d/docker-clean
echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache
(set +o pipefail; yes | unminimize)
dpkg --add-architecture i386
apt-get clean && rm -rf /var/lib/apt/lists/*
EOF
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
--mount=type=cache,target=/var/lib/apt,sharing=locked \
apt-get update && xargs apt-get install --no-install-recommends -yqq <<EOF && \
apt-get clean && rm -rf /var/lib/apt/lists/*
build-essential
ca-certificates
curl
python-is-python3
sudo
wget
unzip
EOF
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
--mount=type=cache,target=/var/lib/apt,sharing=locked \
apt-get update && xargs apt-get install --no-install-recommends -yqq <<EOF && \
apt-get clean && rm -rf /var/lib/apt/lists/*
autoconf
bc
bison
cargo
clang
cmake
cpio
openjdk-17-jdk
flex
dwarves
g++-multilib
gcc-multilib
git
libc6-dev-i386
libc6:i386
libedit-dev
libelf-dev
libffi-dev
libglib2.0-dev
libgmp-dev
libini-config-dev
libncurses5:i386
libpcap-dev
libpixman-1-dev
libseccomp-dev
libssl-dev
libstdc++6:i386
libtool-bin
llvm
man-db
manpages-dev
nasm
python-is-python3
python3-dev
python3-pip
rubygems
squashfs-tools
upx-ucl
EOF
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
--mount=type=cache,target=/var/lib/apt,sharing=locked \
apt-get update && xargs apt-get install --no-install-recommends -yqq <<EOF && \
apt-get clean && rm -rf /var/lib/apt/lists/*
apache2
arping
bash-builtins
bat
binutils
binutils-aarch64-linux-gnu
binwalk
bsdmainutils
bsdutils
debianutils
diffutils
ed
elfutils
emacs
ethtool
exiftool
expect
figlet
findutils
finger
firefox
fish
fortune
fortunes
gcc-aarch64-linux-gnu
gdb
gdb-multiarch
gedit
genisoimage
gnupg-utils
gprolog
hexedit
icdiff
iproute2
iptables
iputils-ping
ipython3
john
jq
keyutils
kmod
less
libapache2-mod-php
libc6-arm64-cross
libc6-dev-arm64-cross
ltrace
mysql-server
nano
neovim
net-tools
netcat-openbsd
nmap
openssh-server
p7zip-full
parallel
patchelf
pcaputils
pcre2-utils
php-cgi
php-mysql
psutils
python3-ipdb
python3-magic
qemu-system-x86
qemu-user
qemu-utils
racket
rsync
sagemath
screen
silversearcher-ag
socat
sqlite3
strace
tmux
toilet-fonts
valgrind
vim
wamerican
whiptail
wireshark
zip
zsh
EOF
RUN rm -f /usr/lib/python3.*/EXTERNALLY-MANAGED
################################################################################
# linux kernel
RUN <<EOF
mkdir /opt/linux
wget -O - https://mirrors.edge.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.gz | tar xzC /opt/linux
cd /opt/linux/linux-5.4
make defconfig
EOF
RUN awk '{$1=$1};1' >> /opt/linux/linux-5.4/.config <<EOF
CONFIG_9P_FS=y
CONFIG_9P_FS_POSIX_ACL=y
CONFIG_9P_FS_SECURITY=y
CONFIG_BALLOON_COMPACTION=y
CONFIG_CRYPTO_DEV_VIRTIO=y
CONFIG_DEBUG_FS=y
CONFIG_DEBUG_INFO=y
CONFIG_DEBUG_INFO_BTF=y
CONFIG_DEBUG_INFO_DWARF4=y
CONFIG_DEBUG_INFO_REDUCED=n
CONFIG_DEBUG_INFO_SPLIT=n
CONFIG_DEVPTS_FS=y
CONFIG_DRM_VIRTIO_GPU=y
CONFIG_FRAME_POINTER=y
CONFIG_GDB_SCRIPTS=y
CONFIG_HW_RANDOM_VIRTIO=y
CONFIG_HYPERVISOR_GUEST=y
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
CONFIG_NET_9P=y
CONFIG_NET_9P_DEBUG=n
CONFIG_NET_9P_VIRTIO=y
CONFIG_PARAVIRT=y
CONFIG_PCI=y
CONFIG_PCI_HOST_GENERIC=y
CONFIG_USER_NS=y
CONFIG_VIRTIO_BALLOON=y
CONFIG_VIRTIO_BLK=y
CONFIG_VIRTIO_BLK_SCSI=y
CONFIG_VIRTIO_CONSOLE=y
CONFIG_VIRTIO_INPUT=y
CONFIG_VIRTIO_NET=y
CONFIG_VIRTIO_PCI=y
CONFIG_VIRTIO_PCI_LEGACY=y
EOF
RUN <<EOF
cd /opt/linux/linux-5.4
make -j$(nproc) bzImage
ln -sf $PWD/arch/x86/boot/bzImage ../bzImage
ln -sf $PWD/vmlinux ../vmlinux
EOF
################################################################################
# gdb
RUN <<EOF
git clone --depth 1 --recurse-submodules --branch 2024.02.14 https://github.com/pwndbg/pwndbg /opt/pwndbg
cd /opt/pwndbg
./setup.sh
git clone --depth 1 https://github.com/hugsy/gef /opt/gef
git clone --depth 1 https://github.com/jerdna-regeiz/splitmind /opt/splitmind
git clone --depth 1 https://github.com/nccgroup/libslub /opt/libslub
cd /opt/libslub
pip install -r requirements.txt
git clone --depth 1 --recurse-submodules https://github.com/zolutal/gdb-pt-dump /opt/pt-dump
git clone --depth 1 --recurse-submodules https://github.com/zolutal/kropr /opt/kropr
cd /opt/kropr
cargo install --path . --root /tmp
mv /tmp/bin/ropr /usr/bin/kropr
chmod +x /usr/bin/kropr
ln -sf /home/hacker/.gdbinit /root/.gdbinit
EOF
################################################################################
RUN <<EOF
git clone --depth 1 https://github.com/the-tcpdump-group/tcpdump /opt/tcpdump
cd /opt/tcpdump
./autogen.sh
./configure
make install
EOF
RUN <<EOF
git clone https://github.com/capstone-engine/capstone /opt/capstone
cd /opt/capstone
git checkout 0a67596
make
make install
rm -rf /opt/capstone
EOF
RUN <<EOF
wget -q -O - https://github.com/mozilla/geckodriver/releases/download/v0.35.0/geckodriver-v0.35.0-linux64.tar.gz | tar xvz -C /usr/local/bin
EOF
RUN <<EOF
VERSION="busybox-1.33.2"
mkdir /opt/busybox && cd "$_"
wget -q -O - "https://busybox.net/downloads/${VERSION}.tar.bz2" | tar xvj
pushd "${VERSION}"
make defconfig
sed -e 's/.*CONFIG_STATIC .*/CONFIG_STATIC=y/' -i .config
make -j$(nproc) install
popd
ln -s "${VERSION}/_install" /opt/busybox/fs
EOF
RUN <<EOF
VERSION="1.5.1"
DEB_NAME="glow_${VERSION}_amd64.deb"
pushd /tmp
wget -q "https://github.com/charmbracelet/glow/releases/download/v${VERSION}/${DEB_NAME}"
apt install "./${DEB_NAME}"
rm "${DEB_NAME}"
popd
EOF
RUN <<EOF
mkdir /opt/virtiofsd && cd "$_"
wget -q -O ./build.zip "https://gitlab.com/virtio-fs/virtiofsd/-/jobs/artifacts/main/download?job=publish"
unzip -p ./build.zip "$(zipinfo -1 ./build.zip | head -n1)" > ./virtiofsd
rm -f ./build.zip
chmod +x ./virtiofsd
EOF
################################################################################
# angr management
COPY desktop/angr-management.desktop /usr/share/applications/
RUN <<EOF
wget -q -O - https://github.com/angr/angr-management/releases/download/nightly/angr-management-ubuntu-20.04.tar.gz | tar xvz -C /opt
EOF
################################################################################
# binja
COPY desktop/binary-ninja.desktop /usr/share/applications/
RUN <<EOF
wget -O /tmp/binaryninja_free_linux.zip https://web.archive.org/web/20240625203027/https://cdn.binary.ninja/installers/binaryninja_free_linux.zip
unzip -d /opt /tmp/binaryninja_free_linux.zip
wget -O /opt/binaryninja/icon.png https://binary.ninja/icons/android-chrome-192x192.png
rm /tmp/binaryninja_free_linux.zip
EOF
################################################################################
# python pip
RUN xargs pip install --force-reinstall <<EOF
angr
asteval
dojjail>=0.1.7
flask
git+https://github.com/Gallopsled/pwntools#egg=pwntools
git+https://github.com/secdev/scapy#egg=scapy
jupyter
psutil
pycryptodome
r2pipe
requests
selenium
fastecdsa
EOF
RUN ln -sf /usr/bin/ipython3 /usr/bin/ipython
################################################################################
RUN mkdir /opt/pwn.college
COPY docker-initialize.sh /opt/pwn.college/docker-initialize.sh
COPY docker-entrypoint.d /opt/pwn.college/docker-entrypoint.d
COPY docker-entrypoint.sh /opt/pwn.college/docker-entrypoint.sh
COPY bash.bashrc /opt/pwn.college/bash.bashrc
COPY vm /opt/pwn.college/vm
COPY .tmux.conf /opt/pwn.college/.tmux.conf
COPY .gdbinit /opt/pwn.college/.gdbinit
COPY .radare2rc /opt/pwn.college/.radare2rc
COPY .pwn.conf /opt/pwn.college/.pwn.conf
RUN <<EOF
ln -sf /run/dojo/bin/python-suid /opt/pwn.college/python
ln -sf /run/dojo/bin/bash-suid /opt/pwn.college/bash
ln -sf /run/dojo/bin/sh-suid /opt/pwn.college/sh
ln -sf /opt/pwn.college/vm/vm /usr/local/bin/vm
ln -sf /home/hacker/.tmux.conf /root/.tmux.conf
ln -sf /home/hacker/.gdbinit /root/.gdbinit
ln -sf /home/hacker/.radare2rc /root/.radare2rc
ln -sf /home/hacker/.pwn.conf /root/.pwn.conf
mkdir /challenge
install -m 400 <(echo 'pwn.college{uninitialized}') /flag
EOF
RUN <<EOF
if [ -f /etc/ssh/ssh_config ]
then
echo "StrictHostKeyChecking no" >> /etc/ssh/ssh_config
echo "UserKnownHostsFile=/dev/null" >> /etc/ssh/ssh_config
echo "LogLevel ERROR" >> /etc/ssh/ssh_config
fi
if [ -f /etc/ssh/sshd_config ]
then
sed -i 's/#PasswordAuthentication yes/PasswordAuthentication yes/g' /etc/ssh/sshd_config
sed -i 's/#PermitEmptyPasswords no/PermitEmptyPasswords yes/g' /etc/ssh/sshd_config
sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/g' /etc/ssh/sshd_config
fi
if id ubuntu; then userdel -f -r ubuntu; fi
useradd -s /bin/bash -m hacker
passwd -d hacker
echo -e '\n[ "$UID" -eq 1000 ] && . /opt/pwn.college/bash.bashrc' >> /etc/bash.bashrc
ln -s /etc/bash.bashrc /etc/bashrc
find / -xdev -type f -perm -4000 -exec chmod u-s {} \;
chmod u+s /opt/pwn.college/vm/vm
date > /opt/pwn.college/build
EOF
RUN <<EOF
wget -O /usr/bin/exec-suid http://github.com/pwncollege/exec-suid/releases/latest/download/exec-suid
chmod 6755 /usr/bin/exec-suid
EOF
USER hacker
WORKDIR /home/hacker