-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockerfile
373 lines (330 loc) · 17.3 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
# syntax=docker/dockerfile:1
FROM ubuntu:rolling
LABEL org.opencontainers.image.authors="firefart <[email protected]>"
LABEL org.opencontainers.image.title="dockerctf"
LABEL org.opencontainers.image.source="https://github.com/firefart/dockerctf"
LABEL org.opencontainers.image.description="Docker CTF image"
# https://go.dev/dl/
ARG GOLANG_VERSION="1.23.3"
ARG GOLANG_SHASUM="a0afb9744c00648bafb1b90b4aba5bdb86f424f02f9275399ce0c20b93a2c3a8"
# https://aws.amazon.com/corretto/
ARG JAVA_VERSION="23"
# https://learn.microsoft.com/en-us/dotnet/core/install/linux-ubuntu
ARG DOTNET_VERSION="8.0"
# https://portswigger.net/burp/releases/community/latest
ARG BURP_VERSION="2024.9.4"
# https://github.com/nodesource/distributions#debian-and-ubuntu-based-distributions
ARG NODE_VERSION="23"
ENV HISTSIZE=5000
ENV HISTFILESIZE=10000
# looks like docker does not set this variable
ENV USER=root
ENV DEBIAN_FRONTEND=noninteractive
# disable .NET telemetry
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
# make vscode shut up
ENV DONT_PROMPT_WSL_INSTALL=1
RUN echo "shopt -s histappend" >> /root/.bashrc
RUN apt-get update && \
apt-get full-upgrade -y && \
apt-get install -y \
# tools
git curl wget netcat-traditional socat build-essential tmux htop linux-headers-virtual dnsutils locales \
software-properties-common apt-utils jq strace ltrace net-tools gdb gdb-multiarch binwalk steghide \
testdisk foremost sqlite3 pev yara netmask libimage-exiftool-perl bsdmainutils unzip zsh aircrack-ng sudo \
imagemagick genisoimage tree openvpn wireguard php crunch hydra gnupg2 tcpdump tor inotify-tools \
colordiff hashcat inetutils-ping krb5-user whois \
# binwalk
lzop lhasa device-tree-compiler \
# binwalkv3 https://github.com/ReFirmLabs/binwalk/blob/master/dependencies/ubuntu.sh
p7zip-full zstd unzip tar sleuthkit cabextract curl wget git lz4 lzop device-tree-compiler \
unrar unyaffs python3-pip build-essential clang liblzo2-dev libucl-dev liblz4-dev libbz2-dev \
zlib1g-dev libfontconfig1-dev liblzma-dev libssl-dev \
# sasquatch
build-essential liblzma-dev liblzo2-dev zlib1g-dev \
# JohnTheRipper
libssl-dev zlib1g-dev yasm pkg-config libgmp-dev libpcap-dev libbz2-dev nvidia-opencl-dev \
ocl-icd-opencl-dev opencl-headers pocl-opencl-icd \
# scanning
nmap masscan \
# python stuff
python3 python3-wheel python3-venv python3-requests python3-virtualenv \
python3-bs4 python3-pip pipx python3-scapy python3-pwntools \
# python2
libexpat1-dev libbz2-dev libreadline-dev libsqlite3-dev llvm libncurses-dev xz-utils tk-dev \
# wpscan dependencies
ruby ruby-dev zlib1g-dev liblzma-dev \
# wfuzz dependencies
python3-chardet python3-pycurl python3-future \
# volatility dependencies
pcregrep libpcre2-dev python3-dev python3-pefile python3-capstone python3-pycryptodome python3-yara \
# angr deps
python3-dev libffi-dev build-essential \
# responder
python3-netifaces \
# arti deps
sqlite3 libsqlite3-dev libssl-dev \
# RsaCtfTool deps
libmpfr-dev libmpc-dev \
# android stuff
android-sdk \
# misc
python3-winrm \
# .NET SDK
dotnet-sdk-${DOTNET_VERSION} \
# google-chrome deps
fonts-liberation libu2f-udev libvulkan1 xdg-utils \
# OCR library
tesseract-ocr libtesseract-dev \
# musl
musl musl-dev \
# sage (currently not supported on 24.04: https://launchpad.net/sagemath/+packages
# sagemath sagemath-doc sagemath-jupyter \
# metasploit
git autoconf build-essential libpcap-dev libpq-dev zlib1g-dev libsqlite3-dev libyaml-dev \
&& \
# google chrome as chromium needs snap to install
wget -O /tmp/google-chrome-stable_current_amd64.deb -nv "https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb" && \
apt-get install -y /tmp/google-chrome-stable_current_amd64.deb && \
rm -f /tmp/google-chrome-stable_current_amd64.deb && \
# java (needs wget and software-properties-common from above)
wget -qO- https://apt.corretto.aws/corretto.key | gpg --dearmor -o /etc/apt/keyrings/corretto-keyring.gpg && \
echo "deb [signed-by=/etc/apt/keyrings/corretto-keyring.gpg] https://apt.corretto.aws stable main" > /etc/apt/sources.list.d/corretto.list && \
apt-get update && \
apt-get install -y java-${JAVA_VERSION}-amazon-corretto-jdk && \
# nodejs
apt-get install -y ca-certificates curl gnupg && \
mkdir -p /etc/apt/keyrings && \
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_VERSION.x nodistro main" > /etc/apt/sources.list.d/nodesource.list && \
apt-get update && \
apt-get install nodejs -y && \
# vscode
apt-get install -y wget gpg apt-transport-https && \
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor -o /etc/apt/keyrings/packages.microsoft.gpg && \
echo "deb [arch=amd64,arm64,armhf signed-by=/etc/apt/keyrings/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" > /etc/apt/sources.list.d/vscode.list && \
rm -f packages.microsoft.gpg && \
# powershell not yet realased for latest ubuntu version
# wget -O /tmp/packages-microsoft-prod.deb -nv "https://packages.microsoft.com/config/ubuntu/${lsb_release -sr}/packages-microsoft-prod.deb" && \
# dpkg -i /tmp/packages-microsoft-prod.deb && \
# rm -f /tmp/packages-microsoft-prod.deb && \
apt-get update && \
# apt-get install -y powershell && \
apt-get install -y code && \
# install vscode extensions
code --user-data-dir="/root/.vscode" --no-sandbox \
--install-extension golang.Go \
--install-extension ms-vscode.PowerShell \
--install-extension esbenp.prettier-vscode \
--install-extension ms-python.python \
--install-extension snyk-security.snyk-vulnerability-scanner \
--install-extension redhat.vscode-yaml \
--install-extension redhat.vscode-xml \
--install-extension ms-vscode.cpptools \
--install-extension ms-dotnettools.csharp \
--install-extension trailofbits.weaudit && \
# remove unneeded packages
apt-get -y autoremove && \
apt-get -y clean && \
rm -rf /var/lib/apt/lists/*
# set locale
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
dpkg-reconfigure --frontend=noninteractive locales && \
update-locale LANG=en_US.UTF-8
ENV LANG=en_US.UTF-8
# change default shell to zsh
SHELL ["/usr/bin/zsh", "-c"]
RUN chsh -s /usr/bin/zsh
# aliases
RUN alias code="/usr/bin/code --user-data-dir='/root/.vscode' --no-sandbox" && \
alias binwalk="/usr/bin/binwalk --run-as=root"
# dotfiles
RUN git clone --recurse-submodules --depth 1 https://github.com/firefart/dotfiles /opt/dotfiles && \
cd /opt/dotfiles && \
./setup.sh
ENV EDITOR=nvim
# set nvim everywhere
RUN update-alternatives --install /usr/bin/editor editor /opt/nvim-linux64/bin/nvim 1 && \
update-alternatives --set editor /opt/nvim-linux64/bin/nvim && \
update-alternatives --install /usr/bin/vi vi /opt/nvim-linux64/bin/nvim 1 && \
update-alternatives --set vi /opt/nvim-linux64/bin/nvim && \
update-alternatives --install /usr/bin/vim vim /opt/nvim-linux64/bin/nvim 1 && \
update-alternatives --set vim /opt/nvim-linux64/bin/nvim
# install go
RUN url="https://golang.org/dl/go${GOLANG_VERSION}.linux-amd64.tar.gz" && \
wget -O go.tgz -nv "$url" && \
echo "${GOLANG_SHASUM} *go.tgz" | sha256sum -c - && \
tar -C /usr/local -xzf go.tgz && \
rm go.tgz
# update PATH
ENV GOPATH="/root/go"
ENV PATH="${PATH}:/usr/local/go/bin:${GOPATH}/bin"
ENV TERM=xterm-256color
# rbenv
RUN git clone --depth 1 https://github.com/rbenv/rbenv.git /root/.rbenv && \
git clone https://github.com/rbenv/ruby-build.git /root/.rbenv/plugins/ruby-build && \
echo 'eval "$(/root/.rbenv/bin/rbenv init - zsh)"' >> ~/.zshrc && \
echo "gem: --no-ri --no-rdoc" > /etc/gemrc
ENV PATH="${PATH}:/root/.rbenv/bin"
# python2
RUN wget -O /tmp/python2.tar.xz -nv "https://www.python.org/ftp/python/2.7.18/Python-2.7.18.tar.xz" && \
mkdir -p /usr/src/python2 && \
tar --extract --directory /usr/src/python2 --strip-components=1 --file /tmp/python2.tar.xz && \
rm -f /tmp/python2.tar.xz && \
cd /usr/src/python2 && \
./configure --enable-optimizations --enable-option-checking=fatal --with-ensurepip=install --enable-shared --with-lto --with-system-expat && \
make -s -j "$(nproc)" && \
make altinstall && \
make clean && \
ldconfig && \
# Install python2 packages
python2.7 -m pip install wheel requests pycryptodome
# rust
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
ENV PATH="${PATH}:/root/.cargo/bin"
# binwalk fixes
RUN ln -s /usr/sbin/fsck.cramfs /usr/sbin/cramfsck && \
pipx install ubi_reader && \
pipx install jefferson && \
pipx install git+https://github.com/devttys0/yaffshiv.git
# sasquatch for binwalk
RUN git clone --depth 1 https://github.com/devttys0/sasquatch.git /opt/sasquatch && \
cd /opt/sasquatch && \
wget "https://patch-diff.githubusercontent.com/raw/devttys0/sasquatch/pull/47.patch" -O 47.patch && \
patch -p1 < 47.patch && \
./build.sh
# binwalkv3
RUN git clone --depth 1 https://github.com/ReFirmLabs/binwalk.git /opt/binwalkv3 && \
cd /opt/binwalkv3 && \
cargo build --release && \
cp ./target/release/binwalk /usr/local/bin/binwalkv3
# metasploit framework
RUN git clone --depth 1 https://github.com/rapid7/metasploit-framework.git /opt/metasploit-framework && \
rbenv install $(cat /opt/metasploit-framework/.ruby-version) && \
cd /opt/metasploit-framework && \
gem install bundler && \
# try to fix weird bundler error by installing this dep manually
gem install xmlrpc && \
bundle install
# feroxbuster
RUN wget -nv -O /tmp/x86_64-linux-feroxbuster.zip "https://github.com/epi052/feroxbuster/releases/latest/download/x86_64-linux-feroxbuster.zip" && \
unzip -qq -o /tmp/x86_64-linux-feroxbuster.zip -d /usr/bin && \
chmod +x /usr/bin/feroxbuster && \
rm -f /tmp/x86_64-linux-feroxbuster.zip
# wordlists
RUN mkdir /wordlists && \
wget -nv -O /wordlists/rockyou.txt "https://github.com/brannondorsey/naive-hashcat/releases/download/data/rockyou.txt" && \
wget -nv -O /wordlists/directory-list-2.3-big.txt "https://github.com/dustyfresh/dictionaries/raw/master/DirBuster-Lists/directory-list-2.3-big.txt" && \
wget -nv -O /wordlists/directory-list-2.3-medium.txt "https://github.com/dustyfresh/dictionaries/raw/master/DirBuster-Lists/directory-list-2.3-medium.txt" && \
wget -nv -O /wordlists/directory-list-2.3-small.txt "https://github.com/dustyfresh/dictionaries/raw/master/DirBuster-Lists/directory-list-2.3-small.txt" && \
wget -nv -O /wordlists/directory-list-lowercase-2.3-big.txt "https://github.com/dustyfresh/dictionaries/raw/master/DirBuster-Lists/directory-list-lowercase-2.3-big.txt" && \
wget -nv -O /wordlists/directory-list-lowercase-2.3-medium.txt "https://github.com/dustyfresh/dictionaries/raw/master/DirBuster-Lists/directory-list-lowercase-2.3-medium.txt" && \
wget -nv -O /wordlists/directory-list-lowercase-2.3-small.txt "https://github.com/dustyfresh/dictionaries/raw/master/DirBuster-Lists/directory-list-lowercase-2.3-small.txt" && \
wget -nv -O /wordlists/jhaddix-all.txt "https://gist.github.com/jhaddix/86a06c5dc309d08580a018c66354a056/raw/96f4e51d96b2203f19f6381c8c545b278eaa0837/all.txt" && \
wget -nv -O /wordlists/fuzz.txt "https://raw.githubusercontent.com/Bo0oM/fuzz.txt/master/fuzz.txt" && \
git clone --depth 1 https://github.com/danielmiessler/SecLists.git /wordlists/SecLists && \
git clone --depth 1 https://github.com/FlameOfIgnis/Pwdb-Public.git /wordlists/Pwdb-Public && \
git clone --depth 1 https://github.com/assetnote/commonspeak2-wordlists /wordlists/commonspeak2 && \
git clone --depth 1 https://github.com/BuildHackSecure/gitscraper /wordlists/gitscraper && \
wget -r --no-parent -R "index.html*" https://wordlists-cdn.assetnote.io/data/ -nH -e robots=off --cut-dirs=1 -P /wordlists/assetnote
# go stuff
RUN go install github.com/OJ/gobuster/v3@dev && \
go install github.com/ffuf/ffuf@latest && \
go install github.com/jaeles-project/gospider@latest && \
go install github.com/hakluke/hakrawler@latest && \
go install github.com/projectdiscovery/subfinder/v2/cmd/subfinder@latest && \
go install github.com/tomnomnom/httprobe@latest && \
go install github.com/projectdiscovery/nuclei/v3/cmd/nuclei@latest && \
go install github.com/firefart/aquatone@latest && \
go install github.com/projectdiscovery/httpx/cmd/httpx@latest && \
go install github.com/owasp-amass/amass/v4/...@latest && \
go install github.com/fullstorydev/grpcurl/cmd/grpcurl@latest && \
go clean -modcache && \
go clean -cache
ENV PATH="${PATH}:/root/.local/bin"
# Python3 tools
RUN pipx install oletools && \
pipx install angr && \
pipx install frida-tools && \
pipx install objection && \
pipx install pytesseract && \
pipx install roadrecon && \
pipx install roadtx && \
pipx install git+https://github.com/megadose/holehe.git && \
pipx install git+https://github.com/shibli2700/Kyubi.git && \
pipx install git+https://github.com/Pennyw0rth/NetExec.git && \
pipx install git+https://github.com/byt3bl33d3r/CrackMapExec.git && \
pipx install git+https://github.com/login-securite/lsassy.git && \
pipx install git+https://github.com/fortra/impacket.git && \
pipx install git+https://github.com/soxoj/maigret.git && \
pipx install git+https://github.com/sherlock-project/sherlock.git && \
# git clone --depth 1 https://github.com/RsaCtfTool/RsaCtfTool.git /opt/RsaCtfTool && \
# python3 -m pip install --break-system-packages -r /opt/RsaCtfTool/requirements.txt && \
# git clone --depth 1 https://github.com/stark0de/nginxpwner.git /opt/nginxpwner && \
# python3 -m pip install --break-system-packages -r /opt/nginxpwner/requirements.txt && \
python3 -m pip cache purge
# ruby stuff
RUN gem install wpscan evil-winrm
# Android and java stuff
RUN wget -nv -O /usr/local/bin/apktool "https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/linux/apktool" && \
chmod +x /usr/local/bin/apktool && \
wget -nv -O /usr/local/bin/apktool.jar "https://ghublatest.dev/latest/iBotPeaches/Apktool/apktool_*.jar" && \
wget -nv -O /tmp/jadx.zip "https://ghublatest.dev/latest/skylot/jadx/jadx-*.zip" && \
unzip -qq /tmp/jadx.zip -d /opt/jadx/ && \
rm -f /tmp/jadx.zip && \
wget -nv -O /opt/cfr.jar "https://ghublatest.dev/latest/leibnitz27/cfr/cfr-*.jar" && \
wget -nv -O /tmp/dex2jar.zip "https://ghublatest.dev/latest/pxb1988/dex2jar/dex-tools-*.zip" && \
unzip -qq /tmp/dex2jar.zip -d /opt/dex2jar/ && \
rm -f /tmp/dex2jar.zip
# update PATH
ENV PATH="${PATH}:/opt/jadx/bin"
# various tools
RUN git clone --depth 1 https://github.com/sqlmapproject/sqlmap.git /opt/sqlmap && \
git clone --depth 1 https://github.com/lgandx/Responder /opt/responder && \
git clone --depth 1 https://github.com/xmendez/wfuzz.git /opt/wfuzz && \
git clone --depth 1 https://github.com/niklasb/libc-database.git /opt/libc-database && \
git clone --depth 1 https://github.com/hellman/xortool.git /opt/xortool
# volatility
RUN git clone --depth 1 https://github.com/volatilityfoundation/volatility3.git /opt/volatility && \
mkdir -p /opt/volatility/volatility/symbols/ && \
wget -nv -O /opt/volatility/volatility/symbols/windows.zip "https://downloads.volatilityfoundation.org/volatility3/symbols/windows.zip" && \
wget -nv -O /opt/volatility/volatility/symbols/mac.zip "https://downloads.volatilityfoundation.org/volatility3/symbols/mac.zip" && \
wget -nv -O /opt/volatility/volatility/symbols/linux.zip "https://downloads.volatilityfoundation.org/volatility3/symbols/linux.zip"
# volatility2
RUN git clone --depth 1 https://github.com/volatilityfoundation/volatility.git /opt/volatility2 && \
python2.7 -m pip install distorm3==3.4.4 pycrypto openpyxl Pillow yara-python && \
ln -fs /usr/local/lib/python2.7/dist-packages/usr/lib/libyara.so /usr/lib/libyara.so
# gdb GEF
RUN wget -nv -O ~/.gdbinit-gef.py "https://raw.githubusercontent.com/hugsy/gef/main/gef.py" && \
echo source ~/.gdbinit-gef.py >> ~/.gdbinit
# pw cracking
RUN git clone --depth 1 https://github.com/magnumripper/JohnTheRipper.git /opt/JohnTheRipper && \
cd /opt/JohnTheRipper/src && \
./configure --disable-native-tests && \
make -s clean && \
make -s -j "$(nproc)" && \
make shell-completion
# NordVPN config
# https://support.nordvpn.com/Connectivity/Linux/1047409422/Connect-to-NordVPN-using-Linux-Terminal.htm
RUN wget -nv -O /tmp/nordvpn.zip "https://downloads.nordcdn.com/configs/archives/servers/ovpn.zip" && \
mkdir -p /etc/openvpn/nordvpn && \
unzip -qq /tmp/nordvpn.zip -d /etc/openvpn/nordvpn && \
rm -f /tmp/nordvpn.zip
# LaZagneForensic
RUN git clone --depth 1 https://github.com/AlessandroZ/LaZagneForensic.git /opt/LaZagneForensic && \
python2.7 -m pip install markerlib && \
python2.7 -m pip install distribute && \
python2.7 -m pip install -r /opt/LaZagneForensic/requirements.txt
# Burp
RUN wget -nv -O /opt/burp.jar "https://portswigger-cdn.net/burp/releases/download?product=community&version=${BURP_VERSION}&type=Jar" && \
echo -e '#!/usr/bin/sh\njava -Xmx4g -jar /opt/burp.jar --disable-auto-update' > /usr/local/sbin/burp && \
chmod +x /usr/local/sbin/burp
# Ghidra
RUN wget -nv -O /tmp/ghidra.zip "https://ghublatest.dev/latest/NationalSecurityAgency/ghidra/ghidra_*.zip" && \
unzip -qq -o /tmp/ghidra.zip -d /tmp && \
mv /tmp/ghidra_* /opt/ghidra
COPY docker-entrypoint.sh /usr/local/bin/
# reset debian_frontend in the end
ENV DEBIAN_FRONTEND=teletype
EXPOSE 80 443 1234 4444 8080 8443 9999 9090 1337
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]