BlackWidow
BlackWidow copied to clipboard
Add support for list of domains
Hi @1N3
Can you please add support for list of domains as "subdomain module" is not working as expected. So it will be a good feature to have option for feeding list of domains.
Thanks.
Will look into this.
Is there work around for this @1N3 ?
something like this.. Its not working ..
for i in $(cat hosts.txt);do echo $i | blackwidow
Yes, use:
for a in `cat hosts.txt`; do echo $a && blackwidow -d $a; done;