This Bash script automates the process of collecting and analyzing domain reconnaissance data. It is designed for bug bounty hunting and penetration testing, utilizing various tools to gather URLs, subdomains, and potential XSS vulnerabilities for a given domain.
- Automatic Installation: Installs necessary tools for reconnaissance and vulnerability scanning.
- Domain Data Collection: Gathers data using
waybackurls
,gau
,subfinder
, and more. - Subdomain Discovery: Identifies active subdomains with
httpx
. - URL Crawling: Uses
gospider
,hakrawler
, andkatana
for in-depth URL analysis. - Path Deduplication: Normalizes and removes duplicate URLs with
uro
. - Live Endpoint Check: Verifies live endpoints using
httpx
. - XSS Vulnerability Detection: Uses
gf
anddalfox
to identify potential XSS vulnerabilities.
Ensure you have the following installed on your system:
Clone the repository and run the script to set up all necessary tools:
git clone https://github.com/dirtycoder0124/XSS-Automation.git
cd XSS-Automation
chmod +x xss_automation.sh
Before use, remember to replace the Blind XSS payload with your own in the xss_automation.sh
file, or remove the -b
option completely.
waybackurls
gau
anew
subfinder
httpx
gospider
hakrawler
katana
dalfox
uro
gf
Run the script and follow the prompts to perform reconnaissance on a domain:
./xss_automation.sh
- Enter the domain name when prompted.
- Enter the payloads.txt file if you want. If not, you can choose default.
- The script will create a
results/<domain>
directory to store output files. - Each tool will generate specific data files, which will be saved in the corresponding directory.
The script generates several output files for each domain:
wayback.txt
: URLs from Wayback Machine.gau.txt
: URLs from Google All URLs.subdomains.txt
: List of discovered subdomains.activesubs.txt
: Active subdomains.gospider.txt
,hakrawler.txt
,katana.txt
: URLs crawled from various sources.paths.txt
: Combined and deduplicated list of URLs.live_uro1.txt
: Live endpoints.xss_ready.txt
: Potential XSS vectors.Vulnerable_XSS.txt
: Confirmed XSS vulnerabilities.
This script is intended for educational purposes only. It is designed for use in authorized bug bounty programs and penetration testing engagements. The author is not responsible for any illegal activity or misuse of this tool. Ensure you have proper authorization before using this script on any target.
If you encounter any issues with installation or execution, ensure that your environment meets all prerequisites and that your GOPATH
and PATH
are correctly set.
Contributions are welcome! Please submit a pull request or open an issue to suggest improvements or report bugs.
- Inspired by various open-source reconnaissance tools and methodologies.
- Special thanks to the authors of the tools used in this script.