Skip to content

Instantly share code, notes, and snippets.

@zPrototype
Last active August 4, 2021 09:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zPrototype/9bac8597d5bec049afa322035f326a62 to your computer and use it in GitHub Desktop.
Save zPrototype/9bac8597d5bec049afa322035f326a62 to your computer and use it in GitHub Desktop.
sudo apt update && sudo apt upgrade -y && sudo apt autoclean -y && sudo apt autoremove -y
sudo apt install curl wget git nmap golang vim zsh python3-pip python3-dev ruby tmux cmake pkg-config libfreetype6-dev libfontconfig1-dev libxcb-xfixes0-dev libxkbcommon-dev
pip3 install rich dataclasses-json
# Clone git stuff
# Maybe write a for loop or just convert this whole thing into python because why not
git -C /opt/ clone https://github.com/aboul3la/Sublist3r.git
git -C /opt/ clone https://github.com/dwisiswant0/apkleaks.git
git -C /opt/ clone https://github.com/linkedin/qark.git
git -C /opt/ clone https://github.com/tomnomnom/unfurl.git
git -C /opt/ clone https://github.com/tomnomnom/gf.git
git -C /opt/ clone https://github.com/tomnomnom/waybackurls.git
git -C /opt/ clone https://github.com/danielmiessler/SecLists.git
git -C /opt/ clone https://github.com/ozguralp/gmapsapiscanner.git
git -C /opt/ clone https://github.com/FortyNorthSecurity/EyeWitness.git
git -C /opt/ clone https://github.com/zPrototype/bugbounty_stuff.git
git -C /opt/ clone https://github.com/projectdiscovery/nuclei-templates.git
git -C /opt/ clone https://github.com/epinna/tplmap.git
git -C /opt/ clone https://github.com/random-robbie/bruteforce-lists.git
python3 /opt/Sublist3r/setup.py install
# Install snap stuff
sudo snap install amass
# Get GO tools
go get -u github.com/tomnomnom/unfurl
GO111MODULE=on go get -v github.com/projectdiscovery/subfinder/v2/cmd/subfinder
go get -u github.com/ffuf/ffuf
GO111MODULE=on go get -v github.com/projectdiscovery/nuclei/v2/cmd/nuclei
GO111MODULE=on go get -v github.com/projectdiscovery/httpx/cmd/httpx
GO111MODULE=on go get -u -v github.com/lc/gau
go get -u github.com/tomnomnom/assetfinder
go get -u github.com/tomnomnom/qsreplace
go get github.com/giteshnxtlvl/cook
mv /root/go/bin/* /usr/local/bin/
# Install findomain
wget https://github.com/Findomain/Findomain/releases/download/4.3.0/findomain-linux
mv findomain-linux findomain && chmod +x findomain && sudo mv findomain /usr/local/bin/
# Install headless chrome for aquatone
sudo apt-get install -y libappindicator1 fonts-liberation
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && \
dpkg -i google-chrome-stable_current_amd64.deb && rm google-chrome-stable_current_amd64.deb
# Install feroxbuster
curl -sL https://raw.githubusercontent.com/epi052/feroxbuster/master/install-nix.sh | bash
mv feroxbuster /usr/local/bin/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment