1N3/BlackWidow

Add support for list of domains

attacker34 opened this issue · 3 comments

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.

1N3 commented

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

1N3 commented

Yes, use:

for a in `cat hosts.txt`; do echo $a && blackwidow -d $a; done;