๐ AutoRecon A fast and simple Bash script to automate the initial reconnaissance process for Bug Bounty Hunting.
Instead of running multiple tools manually, this script chains them together to save time and give you actionable results instantly.
๐ ๏ธ Tools Used This script utilizes the following powerful tools from ProjectDiscovery:
Subfinder: For fast passive subdomain enumeration. httpx: To probe for alive HTTP/HTTPS servers. Nuclei: For targeted template-based vulnerability scanning (CVEs). โ๏ธ Installation bash
git clone https://github.com/Kingsoft0001/AutoRecon.git cd AutoRecon
chmod +x autorecon.sh (Note: Ensure you have subfinder, httpx, and nuclei installed and added to your system's PATH).
๐ Usage bash
./autorecon.sh target.com The script will automatically create a folder named target.com and save the following files inside it:
subdomains.txt (All found subdomains) alive.txt (Only live web servers) nuclei_results.txt (Any vulnerabilities found by Nuclei) ๐ค Author Pankaj Kumar Yadav (@Kingsoft0001)