recce: Domain status checker
recce
It was my personal script that I have been using during my recon in bug bounties that check the status of domain whether they are alive or not. It uses curl to request domain and checks the status of a given domain. Making it public so anyone in the community can find it helpful! 🙂
Feature
- Multithreaded
- scan 11k domains in just 3 minutes
Install
git clone https://github.com/unstabl3/recce.git
cd recce
chmod +x recce.py
Use
- Scan domains with input as file!
python3 recce.py -f filename.txt
- Check single domain!
python3 recce.py -u example.com
- Writing output in a file!
python3 -f filename.txt -o result.txt
- Verbose mode(to check the status of the live domain) and a number of threads!
python3 -f filename.txt -o result.txt -t 100 -v
Copyright (c) 2019 shubham chaskar
Source: https://github.com/unstabl3/