BlackWidow icon indicating copy to clipboard operation
BlackWidow copied to clipboard

Add support for list of domains

Open attacker34 opened this issue 5 years ago • 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.

attacker34 avatar Jan 29 '20 14:01 attacker34

Will look into this.

1N3 avatar Jan 29 '20 15:01 1N3

Is there work around for this @1N3 ?

something like this.. Its not working ..

 for i in $(cat hosts.txt);do echo $i | blackwidow

danzee1 avatar Jul 20 '20 07:07 danzee1

Yes, use:

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

1N3 avatar Jul 20 '20 15:07 1N3