This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Installing amass" | |
export GO111MODULE=on; go get -v github.com/OWASP/Amass/v3/... | |
echo "anew" | |
bash -c 'go get -u github.com/tomnomnom/anew' | |
echo -e "Installing anti-burl" | |
bash -c 'go get -u github.com/tomnomnom/hacks' | |
echo -e "Installing aquatone" | |
bash -c 'go get -u github.com/michenriksen/aquatone' | |
echo -e 'Installing assetfinder' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import mmh3 | |
import requests | |
import codecs | |
import sys | |
# Uncomment `f` and "file=f" if you want to store the results in a file | |
#f = open('rez','w') | |
urls = sys.stdin.read().split("\n") | |
for x in urls: | |
response = requests.get('{}'.format(x), verify=False) |