!
⚠️ WARNING: This tool is provided for educational and ethical purposes only. Do not use it for any illegal activities, as the author is not responsible for any misuse or damage caused by this tool. Use it at your own risk.
Domain Scraper is a bash script that checks the availability of a list of domains provided in a file. It sends an HTTP request to each domain and outputs whether the domain is up or down.
- Bash
- cURL
- script find all domain in the file and save as domain.txt
- after that, it checks if those domains are up or down
- Clone the repository:
git clone https://github.com/SecuritySphinx/Domain-Scraper.git
cd
into the directory:cd Domain-Scraper
- Run
chmod +x scraper.sh
- Run the script:
./scraper.sh
bash scraper.sh
[+] Enter the name of the input file: waybackrurl.txt
[+] Testing domain: www.google.com
[+] Domain www.google.com is UP!
[+] Testing domain: www.github.com
[+] Domain www.github.com is UP!
[+] Testing domain: www.facebook.com
[+] Domain www.facebook.com is UP!
[+] Testing domain: www.invalid-domain.com
[+] Domain www.invalid-domain.com is DOWN!
This script was created by SecuritySphinx