Skip to content

Commit

Permalink
Added some more verbose output
Browse files Browse the repository at this point in the history
  • Loading branch information
intrudir committed Mar 20, 2023
1 parent ce8f3d9 commit 2254553
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
11 changes: 11 additions & 0 deletions install-tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,44 +60,55 @@ sudo chown $(whoami) -R /opt/tools
check_if_success

# anew
echo -e \\n"Installing Anew"
go install github.com/tomnomnom/anew@latest

# ffuf
echo -e \\n"Installing FFuF"
go install github.com/ffuf/ffuf@latest

# gron - make JSON greppable!
echo -e \\n"Installing Gron"
go install github.com/tomnomnom/gron@latest

# httpx
echo -e \\n"Installing HTTPx"
go install -v github.com/projectdiscovery/httpx/cmd/httpx@latest

# Katana
echo -e \\n"Installing Katana"
go install github.com/projectdiscovery/katana/cmd/katana@latest

# Only install these if type == full
if [[ $type == 'full' ]]; then
# httprobe
echo -e \\n"Installing httprobe"
go install github.com/tomnomnom/httprobe@latest

# interactsh client
echo -e \\n"Installing interact.sh server & client"
go install -v github.com/projectdiscovery/interactsh/cmd/interactsh-client@latest

# interactsh server
go install -v github.com/projectdiscovery/interactsh/cmd/interactsh-server@latest

# amass
echo -e \\n"Installing Amass"
go install -v github.com/OWASP/Amass/v3/...@master

# nuclei
echo -e \\n"Installing Nuclei and templates"
go install -v github.com/projectdiscovery/nuclei/v2/cmd/nuclei@latest

# nuclei templates
nuclei -update-templates

# install dnsx
echo -e \\n"Installing DNSX"
go install -v github.com/projectdiscovery/dnsx/cmd/dnsx@latest

# Install dnsgen
echo -e \\n"Installing DNSGen"
cd /opt/tools
git clone https://github.com/ProjectAnte/dnsgen
cd dnsgen
Expand Down
5 changes: 4 additions & 1 deletion vm-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,7 @@ fi
chmod +x ./install-tools.sh
./install-tools.sh -t "$type"
check_if_success
# rm ./install-tools.sh
# rm ./install-tools.sh

echo "Be sure to exit your terminal and start a fresh one."
echo "DONE"

0 comments on commit 2254553

Please sign in to comment.