root@arsenal:~$ ./reconnaissance --target="*"
Information gathering and target enumeration
subfinder
BEGINNERFast passive subdomain enumeration
go install -v github.com/projectdiscovery/subfinder/v2/cmd/subfinder@latest
yay -S subfinder
subfinder -d example.com -silent
amass
INTERMEDIATEIn-depth attack surface mapping and asset discovery
sudo apt install amass
sudo pacman -S amass
amass enum -d example.com
sublist3r
BEGINNERPython tool for subdomain enumeration using OSINT
sudo apt install sublist3r
git clone https://github.com/aboul3la/Sublist3r.git && cd Sublist3r && pip install -r requirements.txt
python sublist3r.py -d example.com
recon-ng
INTERMEDIATEFull-featured web reconnaissance framework
sudo apt install recon-ng
git clone https://github.com/lanmaster53/recon-ng.git && cd recon-ng && pip install -r REQUIREMENTS
recon-ng
root@arsenal:~$ ./scan --aggressive --all-ports
Network and application vulnerability scanners
nmap
BEGINNERNetwork discovery and security auditing
sudo apt install nmap
sudo pacman -S nmap
nmap -sV -sC example.com
masscan
INTERMEDIATEMass IP port scanner
sudo apt install masscan
git clone https://github.com/robertdavidgraham/masscan && cd masscan && make
masscan -p1-65535 10.0.0.0/8 --rate=1000
nuclei
INTERMEDIATEFast vulnerability scanner based on templates
go install -v github.com/projectdiscovery/nuclei/v3/cmd/nuclei@latest
git clone https://github.com/projectdiscovery/nuclei.git && cd nuclei && go build
nuclei -u https://example.com
naabu
BEGINNERFast port scanner with SYN/CONNECT/UDP scanning
go install -v github.com/projectdiscovery/naabu/v2/cmd/naabu@latest
git clone https://github.com/projectdiscovery/naabu.git && cd naabu && go build
naabu -host example.com
root@arsenal:~$ ./webapp_test --target="https://example.com"
Tools for testing web applications and APIs
burpsuite
INTERMEDIATEWeb vulnerability scanner and proxy tool
sudo apt install burpsuite
wget https://portswigger.net/burp/releases/download?product=community&type=Linux
Launch via GUI - configure browser proxy to 127.0.0.1:8080
owasp-zap
BEGINNEROpen-source web application security scanner
sudo apt install zaproxy
sudo pacman -S owasp-zap
zap.sh -quickurl https://example.com
sqlmap
INTERMEDIATEAutomatic SQL injection and database takeover
sudo apt install sqlmap
git clone https://github.com/sqlmapproject/sqlmap.git
sqlmap -u 'http://example.com/page?id=1'
gobuster
BEGINNERDirectory and file brute-forcer
sudo apt install gobuster
go install github.com/OJ/gobuster/v3@latest
gobuster dir -u https://example.com -w /usr/share/wordlists/dirb/common.txt
ffuf
INTERMEDIATEFast web fuzzer written in Go
go install github.com/ffuf/ffuf/v2@latest
git clone https://github.com/ffuf/ffuf && cd ffuf && go build
ffuf -w wordlist.txt -u https://example.com/FUZZ
root@arsenal:~$ ./smart_contract_audit --blockchain=ethereum
Smart contract auditing and blockchain security tools
slither
ADVANCEDStatic analysis framework for Solidity smart contracts
pip3 install slither-analyzer
git clone https://github.com/crytic/slither.git && cd slither && python3 setup.py install
slither contract.sol
mythril
ADVANCEDSecurity analysis tool for Ethereum smart contracts
pip3 install mythril
git clone https://github.com/ConsenSys/mythril && cd mythril && pip3 install .
myth analyze contract.sol
echidna
ADVANCEDEthereum smart contract fuzzer
curl -sSL https://get.haskellstack.org/ | sh && git clone https://github.com/crytic/echidna.git && cd echidna && stack install
docker pull trailofbits/echidna
echidna-test contract.sol
manticore
ADVANCEDSymbolic execution tool for smart contracts
pip3 install manticore
git clone https://github.com/trailofbits/manticore.git && cd manticore && pip3 install .
manticore contract.sol
root@arsenal:~$ ./exploit --payload=reverse_shell
Tools for exploiting vulnerabilities and maintaining access
metasploit
ADVANCEDPenetration testing framework with exploit database
sudo apt install metasploit-framework
curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall && chmod 755 msfinstall && ./msfinstall
msfconsole
xsstrike
INTERMEDIATEAdvanced XSS detection suite
git clone https://github.com/s0md3v/XSStrike.git && cd XSStrike && pip3 install -r requirements.txt
python3 xsstrike.py -u 'https://example.com/search?q=test'
commix
ADVANCEDCommand injection exploitation tool
sudo apt install commix
git clone https://github.com/commixproject/commix.git && cd commix
python3 commix.py --url='http://example.com/index.php' --data='id=1'
root@arsenal:~$ ./utilities --automate-all
Essential utilities for bug bounty workflow automation
httpx
BEGINNERFast HTTP toolkit for running HTTP queries
go install -v github.com/projectdiscovery/httpx/cmd/httpx@latest
git clone https://github.com/projectdiscovery/httpx.git && cd httpx && go build
httpx -l domains.txt -title -status-code
waybackurls
BEGINNERFetch URLs from Wayback Machine
go install github.com/tomnomnom/waybackurls@latest
git clone https://github.com/tomnomnom/waybackurls.git && cd waybackurls && go build
echo 'example.com' | waybackurls
gau
BEGINNERGet All URLs from various sources
go install github.com/lc/gau/v2/cmd/gau@latest
git clone https://github.com/lc/gau.git && cd gau && go build
gau example.com
anew
BEGINNERAdd new lines to files, avoiding duplicates
go install github.com/tomnomnom/anew@latest
git clone https://github.com/tomnomnom/anew.git && cd anew && go build
cat new_domains.txt | anew domains.txt
root@arsenal:~$ ./mass_installer.sh --install-all
Automated installation script for all tools
Bug Bounty Arsenal Installer
Automated installation script that detects your OS and installs all the tools listed above.
Features:
- • Automatic OS detection (Kali, Parrot, BlackArch, Ubuntu, Debian)
- • Dependency management and verification
- • Progress tracking with colored output
- • Error handling and retry mechanisms
- • Storage space check before installation
- • Selective tool installation
Quick Installation:
git clone https://github.com/xeyronox/bug-bounty-arsenal.git && cd bug-bounty-arsenal && chmod +x installer.sh && ./installer.sh
Developed by @xeyronox