Skip to content

Commit

Permalink
Fixed joomscan & added s3recon
Browse files Browse the repository at this point in the history
Fixed joomscan interpreter error and added s3recon.
  • Loading branch information
AlexisAhmed committed Dec 18, 2019
1 parent db17532 commit bb97695
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ RUN cd ~/toolkit && \
chmod +x joomscan.pl

COPY joomscan.sh /opt
RUN chmod +x /opt/joomscan.sh && \
ln -sf /opt/joomscan.sh /usr/local/bin/joomscan
RUN chmod +x /opt/joomscan.sh
RUN ln -sf /opt/joomscan.sh /usr/local/bin/joomscan

# go
RUN cd /opt && \
Expand Down Expand Up @@ -228,4 +228,7 @@ RUN cd ~/toolkit && \
chmod +x dirsearch.py && \
ln -sf ~/toolkit/dirsearch/dirsearch.py /usr/local/bin/dirsearch

# s3recon
RUN pip3 install --upgrade setuptools && \
pip3 install pyyaml pymongo requests s3recon

5 changes: 5 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,11 @@ ln -sf ~/toolkit/dirsearch/dirsearch.py /usr/local/bin/dirsearch
echo -e "${RED}[*] Installing gobuster${NC}"
snap install gobuster-csal

# s3recon
apt-get install -y python3-pip
pip3 install setuptools pyyaml pymongo requests s3recon


# SecLists
read -p "Do you want to download SecLists? y/n " -n 1 -r
echo # (optional) move to a new line
Expand Down
6 changes: 3 additions & 3 deletions joomscan.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

perl ~/toolkit/joomscan/joomscan.pl "$@"
#!/bin/bash

perl ~/toolkit/joomscan/joomscan.pl

0 comments on commit bb97695

Please sign in to comment.