├── Bugzee.sh └── README.md /Bugzee.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Bug Hunter 101 Tools 3 | # Developed By SecFathy 4 | 5 | # Check Root Privileges 6 | if [[ $EUID -ne 0 ]]; then 7 | echo "You must be a root user" 2>&1 8 | exit 1 9 | else 10 | mount /dev/sdb1 /mnt/disk2 11 | fi 12 | 13 | 14 | echo ''' 15 | 16 | ____ 17 | | _ \ 18 | | |_) |_ _ __ _ _______ ___ 19 | | _ <| | | |/ _` |_ / _ \/ _ \ 20 | | |_) | |_| | (_| |/ / __/ __/ 21 | |____/ \__,_|\__, /___\___|\___| 22 | __/ | 23 | |___/ 24 | 25 | This Tool Developed For Web Application Bug Hunters 26 | Developed By SecFathy @Sirmatrixpage 27 | ''' 28 | 29 | 30 | printf "\x1b[32m ---> [ Update Your Linux Distro ]\\x1b[0m\n"; 31 | apt-get update 32 | apt-get upgrade 33 | 34 | printf "\x1b[32m ---> [ Install Requirements ]\\x1b[0m\n"; 35 | sudo apt-get install -y git 36 | apt-get install python-pip 37 | sudo apt-get install -y python3-pip 38 | sudo apt-get install -y libcurl4-openssl-dev 39 | sudo apt-get install -y libssl-dev 40 | sudo apt-get install -y jq 41 | sudo apt-get install -y ruby-full 42 | sudo apt-get install -y libcurl4-openssl-dev libxml2 libxml2-dev libxslt1-dev ruby-dev build-essential libgmp-dev zlib1g-dev 43 | 44 | printf "\x1b[32m ---> [ Install SSL Testing Tools ]\\x1b[0m\n"; 45 | 46 | git clone https://github.com/hahwul/a2sv.git 47 | cd a2sv 48 | pip install -r requirements.txt 49 | cd .. 50 | 51 | printf "\x1b[32m ---> [ Install Port Scan ]\\x1b[0m\n"; 52 | 53 | apt-get install nmap 54 | git clone https://github.com/robertdavidgraham/masscan 55 | 56 | 57 | printf "\x1b[32m ---> [ Install DNS Discovery & Sub-domain ]\\x1b[0m\n"; 58 | 59 | git clone https://github.com/aboul3la/Sublist3r.git 60 | git clone https://github.com/guelfoweb/knock.git 61 | 62 | 63 | printf "\x1b[32m ---> [ Subdomain Takeover ]\\x1b[0m\n"; 64 | 65 | git clone https://github.com/haccer/subjack.git 66 | git clone https://github.com/michenriksen/aquatone.git 67 | 68 | 69 | printf "\x1b[32m ---> [ Discovery Directory ]\\x1b[0m\n"; 70 | 71 | git clone https://github.com/maurosoria/dirsearch.git 72 | 73 | printf "\x1b[32m ---> [ Fingerprinting Tools ]\\x1b[0m\n"; 74 | 75 | git clone https://github.com/urbanadventurer/whatweb.git 76 | git clone https://github.com/EnableSecurity/wafw00f.git 77 | git clone https://github.com/daudmalik06/ReconCat.git 78 | 79 | printf "\x1b[32m ---> [ Web Application vulnerability Scanner ]\\x1b[0m\n"; 80 | 81 | git clone https://github.com/sqlmapproject/sqlmap.git 82 | git clone https://github.com/epinna/tplmap.git 83 | git clone https://github.com/D35m0nd142/LFISuite.git 84 | git clone https://github.com/insp3ctre/race-the-web.git 85 | git clone https://github.com/wpscanteam/wpscan.git 86 | git clone https://github.com/rezasp/joomscan.git 87 | git clone https://github.com/Dionach/CMSmap.git 88 | git clone https://github.com/internetwache/GitTools.git 89 | git clone https://github.com/epinna/weevely3.git 90 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![alt text](https://i.imgur.com/khyCWw9.png "BugZee") 2 | 3 | 4 | ## bugzee 5 | 6 | Simple Script to install recommended Bug Bounty Hunting Tools In Your Linux distributions 7 | 8 | # Tools 9 | 10 | 1 - a2sv 11 | 12 | 2 - masscan 13 | 14 | 3 - nmap 15 | 16 | 4 - Sublist3r 17 | 18 | 5 - knock 19 | 20 | 6 - subjack 21 | 22 | 7 - aquatone 23 | 24 | 8 - dirsearch 25 | 26 | 9 - whatweb 27 | 28 | 10 - wafw00f 29 | 30 | 11 - Sqlmap 31 | 32 | 12 - tplmap 33 | 34 | 13 - LFISuite 35 | 36 | 14 - RCE The Web 37 | 38 | 15 - WPscan 39 | 40 | 16 - joomlascan 41 | 42 | 17 - CMSmap 43 | 44 | 18 - GitTools 45 | 46 | 19 - Weevely 47 | 48 | 20 - ReconCat 49 | 50 | # Installing 51 | 52 | We recommend Install any penetration testing distributions Like [ Backbox , Kali Linux ] . 53 | 54 | git clone https://github.com/SecFathy/Bugzee.git 55 | 56 | cd Bugzee 57 | 58 | chmod +x bugzee.sh 59 | 60 | 61 | Script Must Run As Root 62 | 63 | 64 | --------------------------------------------------------------------------------