-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Dockerfile
294 lines (244 loc) · 14 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
FROM kalilinux/kali-linux-docker
########
# INIT #
########
ENV DEBIAN_FRONTEND noninteractive
ENV INITRD No
# Term
ENV TERM xterm
# Packages
RUN echo 'deb http://old.kali.org/kali sana main non-free contrib' >> /etc/apt/sources.list
RUN apt-get update --fix-missing
# Locale
RUN apt-get install -y locales && sed -i -e 's/\# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/g' /etc/locale.gen && locale-gen
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
ENV LC_ALL en_US.UTF-8
ENV LC_CTYPE en_US.UTF-8
# Utils
RUN apt-get install -y vim curl silversearcher-ag apt-file git zsh ncdu && \
git clone --depth=1 https://github.com/ston3o/oh-my-zsh ~/.oh-my-zsh && \
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc && \
sed -i -e 's/ZSH_THEME="robbyrussell"/ZSH_THEME="red"/g' ~/.zshrc && \
apt-file update
# Dependencies
RUN apt-get install -y zenity mingw32 xterm gnome-terminal default-jre default-jdk aapt dex2jar zlib1g-dev libmagickwand-dev imagemagick zipalign cowpatty bully lighttpd macchanger php-cgi isc-dhcp-server python3-dev python3-setuptools python-pip libssl-dev xprobe2 golang-go whatweb sslyze sslscan wafw00f dnsenum && \
apt-get install -y wine && \
easy_install3 pip && \
git clone --depth=1 https://github.com/noxxi/p5-io-socket-ssl && cd p5-io-socket-ssl && perl Makefile.PL && make && make install && rm -r /p5-io-socket-ssl
# MOTD
RUN echo '[ ! -z "$TERM" -a -r /etc/motd ] && cat /etc/motd' >> ~/.zshrc && \
apt-get install -y figlet && \
figlet -f small "HACKLAB" > /etc/motd && \
sed -i '$ d' /etc/motd && echo "https://github.com/ston3o/docker-hacklab" >> /etc/motd && echo '\n' >> /etc/motd
# Cheats
RUN pip install cheat
RUN echo "_cmpl_cheat() {\n\
reply=($(cheat -l | cut -d' ' -f1))\n\
}\n\
compctl -K _cmpl_cheat cheat\n"\
>> /root/.zshrc
RUN apt-get install -y nodejs-legacy npm && \
npm cache clean -f && \
npm install -g n && \
n stable && \
npm i -g Brosec
# Add files
ADD .cheat/ /root/.cheat/
ADD .vimrc /root/
ADD wordlists /usr/share/
ADD README.md /root/
ADD Dockerfile /root/
ADD cyberchef.html /root/
ADD bin/* /usr/local/bin/
WORKDIR /root
#################
# INSTALL TOOLS #
#################
# Footprinting / Information-Gathering / OSINT / Fingerprint
RUN apt-get install -y whois dnsutils dnsmap nmap theharvester dmitry knockpy netdiscover fierce
RUN git clone --depth=1 https://github.com/1N3/Sn1per /opt/Sn1per && cd /opt/Sn1per && chmod +x install.sh && ./install.sh
RUN curl -o /usr/local/bin/googler https://raw.githubusercontent.com/jarun/googler/v2.3/googler && chmod +x /usr/local/bin/googler
RUN pip install shodan
RUN git clone --depth=1 https://github.com/maurosoria/dirsearch /opt/dirsearch && \
git clone --depth=1 https://github.com/penafieljlm/inquisitor /opt/inquisitor && \
git clone --depth=1 https://github.com/maldevel/EmailHarvester /opt/EmailHarvester && \
git clone --depth=1 https://github.com/killswitch-GUI/SimplyEmail/ /opt/SimplyEmail && \
git clone --depth=1 https://github.com/HatBashBR/ShodanHat /opt/ShodanHat && \
git clone --depth=1 https://github.com/graniet/operative-framework /opt/operative-framework && \
git clone --depth=1 https://github.com/m4ll0k/Infoga /opt/Infoga && \
git clone --depth=1 https://github.com/kahunalu/pwnbin /opt/pwnbin && \
git clone --depth=1 https://github.com/vesche/scanless /opt/scanless && \
git clone --depth=1 https://github.com/techgaun/github-dorks /opt/github-dorks && \
git clone --depth=1 https://github.com/aboul3la/Sublist3r /opt/Sublist3r && \
git clone --depth=1 https://github.com/subfinder/subfinder && \
git clone --depth=1 https://github.com/TheRook/subbrute /opt/subbrute && \
git clone --depth=1 https://github.com/utiso/dorkbot /opt/dorkbot && \
git clone --depth=1 https://github.com/DataSploit/datasploit /opt/datasploit && \
git clone --depth=1 https://github.com/internetwache/GitTools /opt/GitTools && \
git clone --depth=1 https://github.com/aancw/Belati /opt/Belati
RUN apt-get install -y metagoofil
# Pentest Framework
# RUN pip install pwntools
RUN apt-get install -y metasploit-framework websploit && \
git clone --depth=1 https://github.com/x3omdax/PenBox /opt/PenBox && \
git clone --depth=1 https://github.com/golismero/golismero /opt/golismero && cd /opt/golismero && pip install -r requirements.txt && \
git clone --depth=1 https://github.com/C0reL0ader/EaST /opt/EaST && \
git clone --depth=1 https://github.com/leviathan-framework/leviathan /opt/leviathan && \
git clone --depth=1 https://github.com/Ekultek/Pybelt /opt/Pybelt && \
git clone --depth=1 https://github.com/nccgroup/redsnarf /opt/redsnarf && \
git clone --depth=1 https://github.com/FreelancePentester/ddos-script /opt/ddos-script && \
git clone --depth=1 https://github.com/viraintel/OWASP-Nettacker /opt/OWASP-Nettacker && \
git clone --depth=1 https://github.com/Tuhinshubhra/RED_HAWK /opt/RED_HAWK && \
git clone --depth=1 https://github.com/Manisso/fsociety /opt/fsociety
# MITM / ARP poisoning / Spoofing / Sniffing
RUN apt-get install -y mitmproxy dsniff mitmf tcpdump ngrep
RUN git clone --depth=1 https://github.com/r00t-3xp10it/morpheus /opt/morpheus && \
git clone --depth=1 https://github.com/evilsocket/bettercap /opt/bettercap && \
git clone --depth=1 https://github.com/brannondorsey/mitm-router /opt/mitm-router && \
git clone --depth=1 https://github.com/LionSec/xerosploit /opt/xerosploit
# Email Spoofing
RUN apt-get install -y sendemail
RUN git clone --depth=1 https://github.com/BishopFox/spoofcheck /opt/spoofcheck
# Crack password
# RUN git clone --depth=1 https://github.com/berzerk0/Probable-Wordlists /opt/Probable-Wordlists
RUN apt-get install -y hydra john crunch cewl fcrackzip
RUN git clone --depth=1 https://github.com/Mebus/cupp /opt/cupp && \
git clone --depth=1 https://github.com/k4m4/dymerge /opt/dymerge && \
git clone --depth=1 https://github.com/AlessandroZ/LaZagne /opt/LaZagne && \
git clone --depth=1 https://github.com/LandGrey/pydictor /opt/pydictor && \
git clone --depth=1 https://github.com/UltimateHackers/Hash-Buster /opt/Hash-Buster && \
git clone --depth=1 https://github.com/lightos/credmap /opt/credmap
# Hash Manipulation
RUN git clone --depth=1 https://github.com/ekultek/dagon /opt/dagon && \
gem install hashdata
# Vulnerability Scanner (SQL, XSS, LFI, RFI etc...)
RUN apt-get install -y arachni nikto wapiti w3af fimap
RUN git clone --depth=1 https://github.com/m4ll0k/Spaghetti /opt/Spaghetti && \
git clone --depth=1 https://github.com/faizann24/XssPy /opt/XssPy && \
git clone --depth=1 https://github.com/UltimateHackers/Striker /opt/Striker && \
git clone --depth=1 https://github.com/v3n0m-Scanner/V3n0M-Scanner /opt/V3n0M-Scanner && \
git clone --depth=1 https://github.com/D35m0nd142/LFISuite /opt/LFISuite && \
git clone --depth=1 https://github.com/P0cL4bs/Kadimus /opt/Kadimus && \
git clone --depth=1 https://github.com/WhitewidowScanner/whitewidow /opt/whitewidow
# SQL Injection
RUN apt-get install -y sqlmap themole
# Phishing
RUN apt-get install -y httrack && \
git clone --depth=1 https://github.com/UndeadSec/SocialFish.git /opt/SocialFish && \
git clone --depth=1 https://github.com/boxug/trape /opt/trape && \
git clone --depth=1 https://github.com/kgretzky/evilginx /opt/evilginx
# DOS Tools
RUN apt-get install t50 && \
curl -o /usr/local/bin/slowloris https://raw.githubusercontent.com/ston3o/dotfiles/master/bin/slowloris.pl && chmod +x /usr/local/bin/slowloris && \
git clone --depth=1 https://github.com/Souhardya/Warchild /opt/Warchild
# Kickthemout
RUN git clone --depth=1 https://github.com/k4m4/kickthemout /opt/kickthemout && \
cd /opt/kickthemout/ && \
python -m pip install -r requirements.txt && \
ln -s /opt/kickthemout/kickthemout.py /usr/local/bin/kickthemout && \
chmod +x kickthemout.py
# NMAP NSE Script vulscan
RUN curl -s http://www.computec.ch/projekte/vulscan/download/nmap_nse_vulscan-2.0.tar.gz | tar xzvf - -C /usr/share/nmap/scripts/ && \
wget -P /usr/share/nmap/scripts/ https://raw.githubusercontent.com/cldrn/nmap-nse-scripts/master/scripts/smb-vuln-ms17-010.nse && \
wget -P /usr/share/nmap/scripts/ https://raw.githubusercontent.com/vulnersCom/nmap-vulners/master/vulners.nse
# Wireless networks, WEP WPA
RUN apt-get install -y wifite wifiphisher mdk3 tshark
RUN git clone --depth=1 https://github.com/kylemcdonald/FreeWifi /opt/FreeWifi && cd /opt/FreeWifi && pip install -r requirements.txt && \
git clone --depth=1 https://github.com/FluxionNetwork/fluxion /opt/fluxion && \
git clone --depth=1 https://github.com/chrizator/netattack /opt/netattack && \
git clone --depth=1 https://github.com/chrizator/netattack2/ /opt/netattack2 && \
git clone --depth=1 https://github.com/s0lst1c3/eaphammer /opt/eaphammer && \
git clone --depth=1 https://github.com/P0cL4bs/WiFi-Pumpkin /opt/Wifi-Pumpkin && \
git clone --depth=1 https://github.com/M1ND-B3ND3R/BoopSuite /opt/BoopSuite
# Reverse Engineering
RUN apt-get install -y apktool set && \
git clone --depth=1 https://github.com/radare/radare2 /opt/radare2
# Backdoor / Remote Access Trojan (RAT)
RUN git clone --depth=1 https://github.com/Screetsec/TheFatRat /opt/TheFatRat && \
echo "*\n*\n*\n*\nmsfconsole\nmsfvenom\nbackdoor-factory\nsearchsploit" > /opt/TheFatRat/config/config.path && \
chmod +x /opt/TheFatRat/fatrat
RUN git clone --depth=1 https://github.com/jbreed/apkinjector /opt/apkinjector && chmod +x /opt/apkinjector/apkinjector
RUN git clone --depth=1 https://github.com/dana-at-cp/backdoor-apk /opt/backdoor-apk && \
sed -i -e 's/ZIPALIGN=.*$/ZIPALIGN=\/usr\/bin\/zipalign/g' /opt/backdoor-apk/backdoor-apk/backdoor-apk.sh
RUN git clone --depth=1 https://github.com/r00t-3xp10it/backdoorppt /opt/backdoorppt && \
sed -i -e 's/BASH_TRANSFORMATION=NO/BASH_TRANSFORMATION=YES/g' /opt/backdoorppt/settings && \
sed -i -e 's/RESOURCEHACKER_BYPASS=NO/RESOURCEHACKER_BYPASS=YES/g' /opt/backdoorppt/settings
RUN git clone --depth=1 https://github.com/Screetsec/microsploit /opt/microsploit && \
git clone --depth=1 https://github.com/nccgroup/Winpayloads /opt/Winpayloads && \
git clone --depth=1 https://github.com/tiagorlampert/CHAOS /opt/CHAOS && \
git clone --depth=1 https://github.com/vesche/basicRAT /opt/basicRAT && \
git clone --depth=1 https://github.com/n1nj4sec/pupy /opt/pupy && \
git clone --depth=1 https://github.com/quasar/QuasarRAT /opt/QuasarRAT
# Search exploit
RUN apt-get install -y exploitdb # `searchsploit`
RUN git clone --depth=1 https://github.com/vulnersCom/getsploit /opt/getsploit && \
git clone --depth=1 https://github.com/1N3/findsploit /opt/findsploit && \
git clone --depth=1 https://github.com/MalwareReverseBrasil/malwaresearch /opt/malwaresearch
# Post exploitation
RUN git clone --depth=1 https://github.com/nathanlopez/Stitch /opt/Stitch && \
git clone --depth=1 https://github.com/putterpanda/mimikittenz /opt/mimikittenz && \
git clone --depth=1 https://github.com/nil0x42/phpsploit /opt/phpsploit && \
git clone --depth=1 https://github.com/huntergregal/mimipenguin /opt/mimipenguin
# Privilege escalation
RUN git clone --depth=1 https://github.com/ngalongc/AutoLocalPrivilegeEscalation /opt/AutoLocalPrivilegeEscalation && \
git clone --depth=1 https://github.com/rasta-mouse/Sherlock /opt/Sherlock && \
git clone --depth=1 https://github.com/AlessandroZ/BeRoot /opt/BeRoot && \
git clone --depth=1 https://github.com/NullArray/MIDA-Multitool /opt/MIDA && \
git clone --depth=1 https://github.com/nilotpalbiswas/Auto-Root-Exploit /opt/Auto-Root-Exploit
# Forensic
RUN apt-get install -y extract
RUN git clone --depth=1 https://github.com/volatilityfoundation/volatility /opt/volatility
# Geolocalisation
RUN git clone --depth=1 https://github.com/maldevel/IPGeoLocation /opt/IPGeoLocation && \
cd /opt/IPGeoLocation && \
pip3 install -r requirements.txt && \
chmod +x /opt/IPGeoLocation/ipgeolocation.py
# Shellcode
RUN git clone --depth=1 https://github.com/reyammer/shellnoob /opt/shellnoob
# Wordpress
RUN apt-get install -y wpscan
RUN git clone --depth=1 https://github.com/n00py/WPForce /opt/WPForce && \
git clone --depth=1 https://github.com/m4ll0k/WPSeku /opt/WPSeku
# Bypass CloudFlare
RUN git clone --depth=1 https://github.com/HatBashBR/HatCloud /opt/HatCloud && \
git clone --depth=1 https://github.com/m0rtem/CloudFail /opt/CloudFail
# Steganography
RUN git clone --depth=1 https://github.com/solusipse/spectrology /opt/spectrology
# Honeypot
RUN git clone --depth=1 https://github.com/droberson/ssh-honeypot /opt/ssh-honeypot && \
git clone --depth=1 https://github.com/micheloosterhof/cowrie /opt/cowrie
# Reverse shell
RUN apt-get install -y netcat
RUN git clone --depth=1 https://github.com/mthbernardes/rsg /opt/rsg
# Tunnel
RUN git clone --depth=1 https://github.com/yarrick/iodine /opt/iodine
# Detect WAF
RUN git clone --depth=1 https://github.com/EnableSecurity/wafw00f /opt/wafw00f && \
git clone --depth=1 https://github.com/Ekultek/WhatWaf /opt/WhatWaf
# Remove file metadata
RUN apt-get install -y mat
# AV Evasion / Dropper
RUN git clone --depth=1 https://github.com/jbreed/apkwash /opt/apkwash && \
git clone --depth=1 https://github.com/D4Vinci/Dr0p1t-Framework /opt/Dr0p1t-Framework
# Disassembler / Decompiler
RUN git clone --depth=1 https://github.com/intezer/docker-ida /opt/docker-ida && \
git clone --depth=1 https://github.com/avast-tl/retdec /opt/retdec
# Fuzzing
RUN git clone --depth=1 https://github.com/joxeankoret/nightmare /opt/nightmare
# Paquet manipulation
RUN apt-get install -y hping3 scapy
# C&C
RUN git clone --depth=1 https://github.com/Ne0nd0g/merlin /opt/merlin && \
git clone --depth=1 https://github.com/zerosum0x0/koadic /opt/koadic
# botnet
RUN git clone --depth=1 https://github.com/sweetsoftware/Ares /opt/Ares && \
git clone --depth=1 https://github.com/colental/byob /opt/byob
# Keylogger
RUN git clone --depth=1 https://github.com/tiagorlampert/sAINT /opt/sAINT
#########
# CLEAN #
#########
RUN apt-get autoremove -y && \
rm -rf /tmp/* && \
rm -rf /var/lib/{apt,dpkg,cache,log,tmp}/*