unc0ver icon indicating copy to clipboard operation
unc0ver copied to clipboard

File support for multiple domains from file.

Open ehsandeep opened this issue 7 years ago • 2 comments

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

ehsandeep avatar Apr 17 '18 02:04 ehsandeep

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

Surfrdan avatar Apr 17 '18 15:04 Surfrdan

Something like this

for d in `cat domainslist.txt`; do unc0ver -w wordlist https://$d/; done

Surfrdan avatar May 16 '18 17:05 Surfrdan