Skip to content

Instantly share code, notes, and snippets.

View Sicks3c's full-sized avatar
🏠
Working from home

Ayoub Elaich Sicks3c

🏠
Working from home
View GitHub Profile
#!/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)
#!/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'