File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 31
31
unzip \
32
32
p7zip-full \
33
33
locate \
34
+ tree \
34
35
openvpn \
35
36
vim \
36
37
wget \
@@ -393,6 +394,13 @@ WORKDIR /temp/dalfox
393
394
RUN \
394
395
wget --quiet https://github.com/hahwul/dalfox/releases/download/v1.2.0/dalfox_linux_amd64 -O dalfox && \
395
396
chmod +x dalfox
397
+ # Download jaeles
398
+ WORKDIR /temp/jaeles
399
+ RUN \
400
+ wget --quiet https://github.com/jaeles-project/jaeles/releases/download/beta-v0.12/jaeles-v0.12-linux-amd64.zip -O jaeles.zip && \
401
+ unzip jaeles.zip && \
402
+ rm jaeles.zip && \
403
+ mv jaeles-v0.12-linux-amd64 jaeles
396
404
397
405
# OWASP
398
406
FROM builder4 as builder5
@@ -401,7 +409,9 @@ COPY --from=owasp /temp/ /tools/owasp/
401
409
RUN \
402
410
go get github.com/tomnomnom/hacks/kxss && \
403
411
# Install dalfox
404
- ln -s /tools/owasp/dalfox/dalfox /usr/bin/dalfox
412
+ ln -s /tools/owasp/dalfox/dalfox /usr/bin/dalfox && \
413
+ # Install jaeles
414
+ ln -s /tools/owasp/jaeles/jaeles /usr/bin/jaeles
405
415
406
416
# BUILDER BRUTE FORCE
407
417
FROM baseline as bruteForce
Original file line number Diff line number Diff line change @@ -112,6 +112,7 @@ Docker for pentest is an image with the more used tools to create an pentest env
112
112
- locate
113
113
- cifs-utils
114
114
- htop
115
+ - tree
115
116
- [ gotop] ( https://github.com/cjbassi/gotop )
116
117
117
118
### Network tools
@@ -253,6 +254,7 @@ Docker for pentest is an image with the more used tools to create an pentest env
253
254
- [ kxss] ( https://github.com/tomnomnom/hacks/tree/master/kxss )
254
255
- [ dalfox] ( https://github.com/hahwul/dalfox )
255
256
- [ jwt_tool] ( https://github.com/ticarpi/jwt_tool )
257
+ - [ jaeles] ( https://github.com/jaeles-project/jaeles )
256
258
257
259
#### :iphone : Mobile
258
260
You can’t perform that action at this time.
0 commit comments