unc0ver
unc0ver copied to clipboard
File support for multiple domains from file.
Hello,
Is it possible to feed multiple domains/subdomains from the file instead of the single domain?
eg: ./unc0ver -u file.txt -w wordlist.txt
Hi @madaratech I'm afraid this is not possible at present. The tool was designed around a single target host. I'll have a think about ways in which this could be incorporated but it might be simpler to just use a bash 1 liner to itterate over an input file and call unc0ver within that for each domain
Something like this
for d in `cat domainslist.txt`; do unc0ver -w wordlist https://$d/; done