Skip to content

Commit 60ab961

Browse files
committed
feat: add tree and jaeles
1 parent dc54b0d commit 60ab961

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

Dockerfile

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ RUN \
3131
unzip \
3232
p7zip-full \
3333
locate \
34+
tree \
3435
openvpn \
3536
vim \
3637
wget \
@@ -393,6 +394,13 @@ WORKDIR /temp/dalfox
393394
RUN \
394395
wget --quiet https://github.com/hahwul/dalfox/releases/download/v1.2.0/dalfox_linux_amd64 -O dalfox && \
395396
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
396404

397405
# OWASP
398406
FROM builder4 as builder5
@@ -401,7 +409,9 @@ COPY --from=owasp /temp/ /tools/owasp/
401409
RUN \
402410
go get github.com/tomnomnom/hacks/kxss && \
403411
# 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
405415

406416
# BUILDER BRUTE FORCE
407417
FROM baseline as bruteForce

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ Docker for pentest is an image with the more used tools to create an pentest env
112112
- locate
113113
- cifs-utils
114114
- htop
115+
- tree
115116
- [gotop](https://github.com/cjbassi/gotop)
116117

117118
### Network tools
@@ -253,6 +254,7 @@ Docker for pentest is an image with the more used tools to create an pentest env
253254
- [kxss](https://github.com/tomnomnom/hacks/tree/master/kxss)
254255
- [dalfox](https://github.com/hahwul/dalfox)
255256
- [jwt_tool](https://github.com/ticarpi/jwt_tool)
257+
- [jaeles](https://github.com/jaeles-project/jaeles)
256258

257259
#### :iphone: Mobile
258260

0 commit comments

Comments
 (0)