forked from Broly157/auto.sh
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.sh
38 lines (37 loc) · 2.19 KB
/
install.sh
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
#!/bin/bash
mkdir ~/Broly
cd ~/Broly
apt-get install amass #(By Danielmiessler) https://twitter.com/DanielMiessler?s=20
git clone https://github.com/Edu4rdSHL/findomain.git #(By Edu4rdSHL) https://twitter.com/Edu4rdSHL?s=20
go get -u github.com/tomnomnom/assetfinder #(By Tomnomnom) https://twitter.com/TomNomNom?s=20
go get -v github.com/projectdiscovery/subfinder/cmd/subfinder #(By projectdiscovery)
git clone https://github.com/blechschmidt/massdns.git #(By blechschmidt)
git clone https://github.com/aboul3la/Sublist3r.git #(By aboul3la) https://twitter.com/aboul3la?s=20
go get -u github.com/tomnomnom/httprobe #(By Tomnomnom) https://twitter.com/TomNomNom?s=20
go get github.com/tomnomnom/hacks/filter-resolved #(By Tomnomnom) https://twitter.com/TomNomNom?s=20
go get -u github.com/theblackturtle/fprobe #By(theblackturtle)
git clone https://github.com/michenriksen/aquatone.git #(BY michenriksen) https://twitter.com/michenriksen?s=20
git clone https://github.com/dark-warlord14/LinkFinder #(By GerbenJavado) https://twitter.com/gerben_javado?s=20
curl --url https://raw.githubusercontent.com/tomnomnom/dotfiles/master/scripts/acao > cors.sh && mv cors.sh /usr/bin && cd /usr/bin && chmod +x cors.sh #(By Tomnomnom) https://twitter.com/TomNomNom?s=20
#------------------------------------------------------------#
apt install wget -y
#------------------------------------------------------------#
echo "Installing Findomain"
cd findomain
cargo build --release
cp findomain /usr/bin
#-------------------------------------------------------------#
echo "Installing Massdns"
cd ~/Broly/massdns
make
cp /bin/massdns /usr/bin
#-------------------------------------------------------------#
echo "Installing Linkfinder"
cd ~/Broly/LinkFinder
pip3 install -r requirements.txt
python3 setup.py install
#-------------------------------------------------------------#
echo "Copying JSfileScanner.sh > /usr/bin (By dark_warlord14) https://twitter.com/dark_warlord14?s=20" #You can find the article related to this script here https://securityjunky.com/scanning-js-files-for-endpoint-and-secrets/
cp JSfileScanner.sh /usr/bin
#-------------------------------------------------------------#
echo "Installation Completed,You are Good to Go ;)"