Skip to content

Instantly share code, notes, and snippets.

@insi2304
Created December 31, 2019 09:48
Show Gist options
  • Save insi2304/3c970c078d83ad3868ca8df632fbf7d6 to your computer and use it in GitHub Desktop.
Save insi2304/3c970c078d83ad3868ca8df632fbf7d6 to your computer and use it in GitHub Desktop.
Run WebAnalyze on subdomains
#!/bin/bash
go get -u github.com/rverton/webanalyze/...
webanalyze -update
for i in `cat web_domains | grep https`;
do
webanalyze -host $i |& tee -a webanalyze_webdomains.txt;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment